Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.32 KB

File metadata and controls

33 lines (24 loc) · 1.32 KB

ModificationDocumentInsert

Properties

Name Type Description Notes
due_date date [optional]
comment str [optional]
payment_method PaymentMethod [optional]
without_financial_fulfillment bool [optional] [default to False]
items List[DocumentInsertItemsInner] [optional]

Example

from clientapi_billingo.models.modification_document_insert import ModificationDocumentInsert

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

# convert the object into a dict
modification_document_insert_dict = modification_document_insert_instance.to_dict()
# create an instance of ModificationDocumentInsert from a dict
modification_document_insert_from_dict = ModificationDocumentInsert.from_dict(modification_document_insert_dict)

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