Skip to content

Latest commit

History

History
35 lines (26 loc) · 1.42 KB

File metadata and controls

35 lines (26 loc) · 1.42 KB

InvoiceDetailsAddress

The customer’s address.

Properties

NameTypeDescriptionNotes
citystrCity, district, suburb, town, or village.[optional]
countrystrTwo-letter country code (ISO 3166-1 alpha-2).[optional]
line1strAddress line 1 (e.g., street, PO Box, or company name).[optional]
line2strAddress line 2 (e.g., apartment, suite, unit, or building).[optional]
postal_codestrZIP or postal code.[optional]
statestrState, county, province, or region.[optional]

Example

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)

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