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] |
from klimapi_python.models.invoice_details_address import InvoiceDetailsAddress
# TODO update the JSON string below
json = "{}"
# create an instance of InvoiceDetailsAddress from a JSON string
invoice_details_address_instance = InvoiceDetailsAddress.from_json(json)
# print the JSON string representation of the object
print(InvoiceDetailsAddress.to_json())
# convert the object into a dict
invoice_details_address_dict = invoice_details_address_instance.to_dict()
# create an instance of InvoiceDetailsAddress from a dict
invoice_details_address_from_dict = InvoiceDetailsAddress.from_dict(invoice_details_address_dict)