Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.32 KB

FiscalEntityAddress.md

File metadata and controls

36 lines (27 loc) · 1.32 KB

FiscalEntityAddress

Address of the fiscal entity

Properties

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

Example

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)

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