Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.34 KB

File metadata and controls

33 lines (25 loc) · 1.34 KB

CustomerFiscalEntitiesRequest

Properties

Name Type Description Notes
address CustomerFiscalEntitiesRequestAddress
tax_id str [optional]
email str [optional]
phone str [optional]
metadata Dict[str, object] [optional]
company_name str [optional]

Example

from conekta.models.customer_fiscal_entities_request import CustomerFiscalEntitiesRequest

# TODO update the JSON string below
json = "{}"
# create an instance of CustomerFiscalEntitiesRequest from a JSON string
customer_fiscal_entities_request_instance = CustomerFiscalEntitiesRequest.from_json(json)
# print the JSON string representation of the object
print CustomerFiscalEntitiesRequest.to_json()

# convert the object into a dict
customer_fiscal_entities_request_dict = customer_fiscal_entities_request_instance.to_dict()
# create an instance of CustomerFiscalEntitiesRequest from a dict
customer_fiscal_entities_request_form_dict = customer_fiscal_entities_request.from_dict(customer_fiscal_entities_request_dict)

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