The customer’s address.
| Name | Type | Description | Notes |
|---|---|---|---|
| city | str | City, district, suburb, town, or village. | [optional] |
| country | str | Two-letter country code (ISO 3166-1 alpha-2). | [optional] |
| line1 | str | Address line 1 (e.g., street, PO Box, or company name). | [optional] |
| line2 | str | Address line 2 (e.g., apartment, suite, unit, or building). | [optional] |
| postal_code | str | ZIP or postal code. | [optional] |
| state | str | State, county, province, or region. | [optional] |
fromklimapi_python.models.invoice_details_addressimportInvoiceDetailsAddress# TODO update the JSON string belowjson="{}"# create an instance of InvoiceDetailsAddress from a JSON stringinvoice_details_address_instance=InvoiceDetailsAddress.from_json(json)
# print the JSON string representation of the objectprint(InvoiceDetailsAddress.to_json())
# convert the object into a dictinvoice_details_address_dict=invoice_details_address_instance.to_dict()
# create an instance of InvoiceDetailsAddress from a dictinvoice_details_address_from_dict=InvoiceDetailsAddress.from_dict(invoice_details_address_dict)