Required with billing_type = invoice
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | The customer’s full name or business name | |
| str | The customer’s email address | ||
| address | InvoiceDetailsAddress | ||
| tax_id | InvoiceDetailsTaxId | [optional] |
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)