Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.74 KB

File metadata and controls

44 lines (35 loc) · 1.74 KB

DocumentResponse

Document response model.

Properties

Name Type Description Notes
part_type str Path part type
id UUID Document ID
path_part_id UUID PathPart ID
name str Document name
parent_path_part_id UUID Parent PathPart ID
document_type DocumentType
document_origin DocumentOrigin
active_version_id UUID Active version ID
active_version DocumentVersionResponse
materialized_path str Full materialized path from root
system_managed bool Whether this document is system-managed
tenant_id UUID Tenant ID
created_at datetime Creation timestamp
updated_at datetime Last update timestamp
tags List[TagResponse] Tags attached to this document [optional]

Example

from ksapi.models.document_response import DocumentResponse

# TODO update the JSON string below
json = "{}"
# create an instance of DocumentResponse from a JSON string
document_response_instance = DocumentResponse.from_json(json)
# print the JSON string representation of the object
print(DocumentResponse.to_json())

# convert the object into a dict
document_response_dict = document_response_instance.to_dict()
# create an instance of DocumentResponse from a dict
document_response_from_dict = DocumentResponse.from_dict(document_response_dict)

[Back to Model list] [Back to API list] [Back to README]