Response with workflow execution details.
| Name | Type | Description | Notes |
|---|---|---|---|
| workflow_id | str | Temporal workflow ID | |
| document_id | UUID | ||
| document_version_id | UUID |
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)