Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.12 KB

File metadata and controls

33 lines (24 loc) · 1.12 KB

InvoiceSettings

Properties

Name Type Description Notes
document_type DocumentType [optional]
fulfillment_date date [optional]
due_date date [optional]
document_format DocumentFormat [optional]
comment str [optional]

Example

from clientapi_billingo.models.invoice_settings import InvoiceSettings

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

# convert the object into a dict
invoice_settings_dict = invoice_settings_instance.to_dict()
# create an instance of InvoiceSettings from a dict
invoice_settings_from_dict = InvoiceSettings.from_dict(invoice_settings_dict)

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