Name |
Type |
Description |
Notes |
id |
str |
|
[optional] |
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]