| Name | Type | Description | Notes |
|---|---|---|---|
| street1 | str | ||
| street2 | str | [optional] | |
| postal_code | str | ||
| city | str | ||
| state | str | [optional] | |
| country | str | this field follows the ISO 3166-1 alpha-2 standard | [optional] |
| residential | bool | [optional] [default to False] | |
| external_number | str | [optional] |
from conekta.models.customer_address import CustomerAddress
# TODO update the JSON string below
json = "{}"
# create an instance of CustomerAddress from a JSON string
customer_address_instance = CustomerAddress.from_json(json)
# print the JSON string representation of the object
print(CustomerAddress.to_json())
# convert the object into a dict
customer_address_dict = customer_address_instance.to_dict()
# create an instance of CustomerAddress from a dict
customer_address_from_dict = CustomerAddress.from_dict(customer_address_dict)