Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

ApiCreateDocumentResponse.md

File metadata and controls

29 lines (20 loc) · 1.06 KB

ApiCreateDocumentResponse

Properties

Name Type Description Notes
metadata ApiDataMetadata [optional]

Example

from openapi_client.models.api_create_document_response import ApiCreateDocumentResponse

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

# convert the object into a dict
api_create_document_response_dict = api_create_document_response_instance.to_dict()
# create an instance of ApiCreateDocumentResponse from a dict
api_create_document_response_from_dict = ApiCreateDocumentResponse.from_dict(api_create_document_response_dict)

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