Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

File metadata and controls

32 lines (23 loc) · 1.1 KB

IngestDocumentResponse

Response with workflow execution details.

Properties

Name Type Description Notes
workflow_id str Temporal workflow ID
document_id UUID
document_version_id UUID

Example

from ksapi.models.ingest_document_response import IngestDocumentResponse

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

# convert the object into a dict
ingest_document_response_dict = ingest_document_response_instance.to_dict()
# create an instance of IngestDocumentResponse from a dict
ingest_document_response_from_dict = IngestDocumentResponse.from_dict(ingest_document_response_dict)

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