1.1 KiB
1.1 KiB
DocumentResponse
Response model for get document endpoint.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| bank_id | str | ||
| original_text | str | ||
| content_hash | str | ||
| created_at | str | ||
| updated_at | str | ||
| memory_unit_count | int |
Example
from hindsight_client_api.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)