Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 906 Bytes

DocumentId.md

File metadata and controls

30 lines (21 loc) · 906 Bytes

DocumentId

Properties

Name Type Description Notes
document_id str Document Identifier
site_id str Site Identifier [optional]

Example

from formkiq_client.models.document_id import DocumentId

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

# convert the object into a dict
document_id_dict = document_id_instance.to_dict()
# create an instance of DocumentId from a dict
document_id_from_dict = DocumentId.from_dict(document_id_dict)

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