Address of the fiscal entity
Name | Type | Description | Notes |
---|---|---|---|
street1 | str | Street name and number | |
street2 | str | Street name and number | [optional] |
postal_code | str | Postal code | |
city | str | City | |
state | str | State | [optional] |
country | str | this field follows the ISO 3166-1 alpha-2 standard | |
external_number | str | External number |
from conekta.models.fiscal_entity_address import FiscalEntityAddress
# TODO update the JSON string below
json = "{}"
# create an instance of FiscalEntityAddress from a JSON string
fiscal_entity_address_instance = FiscalEntityAddress.from_json(json)
# print the JSON string representation of the object
print(FiscalEntityAddress.to_json())
# convert the object into a dict
fiscal_entity_address_dict = fiscal_entity_address_instance.to_dict()
# create an instance of FiscalEntityAddress from a dict
fiscal_entity_address_from_dict = FiscalEntityAddress.from_dict(fiscal_entity_address_dict)