Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

AddChildDocumentResponse.md

File metadata and controls

31 lines (22 loc) · 1.15 KB

AddChildDocumentResponse

Properties

Name Type Description Notes
document_id str Document Identifier [optional]
upload_url str Url to upload document to [optional]
headers Dict[str, object] [optional]

Example

from formkiq_client.models.add_child_document_response import AddChildDocumentResponse

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

# convert the object into a dict
add_child_document_response_dict = add_child_document_response_instance.to_dict()
# create an instance of AddChildDocumentResponse from a dict
add_child_document_response_from_dict = AddChildDocumentResponse.from_dict(add_child_document_response_dict)

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