| Name | Type | Description | Notes |
|---|---|---|---|
| site_id | str | Site Identifier | [optional] |
| path | str | Path or Name of document | [optional] |
| width | str | Document Content Width property | [optional] |
| height | str | Document Content Height property | [optional] |
| deep_link_path | str | Path or Name of deep link | [optional] |
| inserted_date | str | Inserted Timestamp | [optional] |
| last_modified_date | str | Last Modified Timestamp | [optional] |
| folder | bool | Is Result a Document Folder | [optional] |
| index_key | str | populated if search result are from an index | [optional] |
| checksum | str | Document checksum, changes when document file changes | [optional] |
| checksum_type | ChecksumType | [optional] | |
| document_id | str | Document Identifier | [optional] |
| artifact_id | str | Document Artifact Identifier | [optional] |
| promoted_artifact_id | str | Promoted Artifact Identifier | [optional] |
| artifact_category | str | Document Artifact Category | [optional] |
| has_artifacts | bool | Whether the document has artifact documents | [optional] |
| content_type | str | Document Content-Type | [optional] |
| user_id | str | User who added document | [optional] |
| content_length | int | Document size | [optional] |
| version_id | str | Document version | [optional] |
| belongs_to_document_id | str | Parent Document Identifier | [optional] |
| matched_attribute | DocumentSearchMatchAttribute | [optional] | |
| matched_tag | DocumentSearchMatchTag | [optional] | |
| matched_tags | List[DocumentSearchMatchTag] | [optional] | |
| tags | Dict[str, object] | [optional] | |
| attributes | Dict[str, SearchResultDocumentAttribute] | [optional] | |
| metadata | List[DocumentMetadata] | List of document Metadata | [optional] |
from formkiq_client.models.search_result_document import SearchResultDocument
# TODO update the JSON string below
json = "{}"
# create an instance of SearchResultDocument from a JSON string
search_result_document_instance = SearchResultDocument.from_json(json)
# print the JSON string representation of the object
print(SearchResultDocument.to_json())
# convert the object into a dict
search_result_document_dict = search_result_document_instance.to_dict()
# create an instance of SearchResultDocument from a dict
search_result_document_from_dict = SearchResultDocument.from_dict(search_result_document_dict)