Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 923 Bytes

DocumentExportId.md

File metadata and controls

29 lines (20 loc) · 923 Bytes

DocumentExportId

Properties

Name Type Description Notes
id str [optional]

Example

from clientapi_billingo.models.document_export_id import DocumentExportId

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

# convert the object into a dict
document_export_id_dict = document_export_id_instance.to_dict()
# create an instance of DocumentExportId from a dict
document_export_id_from_dict = DocumentExportId.from_dict(document_export_id_dict)

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