Name | Type | Description | Notes |
---|---|---|---|
document_id | str | Document Identifier | |
site_id | str | Site Identifier | [optional] |
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)