Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.15 KB

File metadata and controls

33 lines (24 loc) · 1.15 KB

InvoiceDetails

Required with billing_type = invoice

Properties

Name Type Description Notes
name str The customer’s full name or business name
email str The customer’s email address
address InvoiceDetailsAddress
tax_id InvoiceDetailsTaxId [optional]

Example

from klimapi_python.models.invoice_details import InvoiceDetails

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

# convert the object into a dict
invoice_details_dict = invoice_details_instance.to_dict()
# create an instance of InvoiceDetails from a dict
invoice_details_from_dict = InvoiceDetails.from_dict(invoice_details_dict)

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