Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.24 KB

File metadata and controls

36 lines (27 loc) · 1.24 KB

CustomerAddress

Properties

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]

Example

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)

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