Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.2 KB

AddDocumentResponse.md

File metadata and controls

32 lines (23 loc) · 1.2 KB

AddDocumentResponse

Properties

Name Type Description Notes
document_id str Document Identifier [optional]
site_id str Site Identifier [optional]
upload_url str Url to upload document to [optional]
documents List[AddChildDocumentResponse] List of child documents [optional]

Example

from formkiq_client.models.add_document_response import AddDocumentResponse

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

# convert the object into a dict
add_document_response_dict = add_document_response_instance.to_dict()
# create an instance of AddDocumentResponse from a dict
add_document_response_from_dict = AddDocumentResponse.from_dict(add_document_response_dict)

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