Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.55 KB

CreateCustomerFiscalEntitiesResponse.md

File metadata and controls

39 lines (30 loc) · 1.55 KB

CreateCustomerFiscalEntitiesResponse

Properties

Name Type Description Notes
address CustomerAddress
tax_id str [optional]
email str [optional]
phone str [optional]
metadata Dict[str, object] [optional]
company_name str [optional]
id str
object str
created_at int
parent_id str [optional]
default bool [optional]

Example

from conekta.models.create_customer_fiscal_entities_response import CreateCustomerFiscalEntitiesResponse

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

# convert the object into a dict
create_customer_fiscal_entities_response_dict = create_customer_fiscal_entities_response_instance.to_dict()
# create an instance of CreateCustomerFiscalEntitiesResponse from a dict
create_customer_fiscal_entities_response_from_dict = CreateCustomerFiscalEntitiesResponse.from_dict(create_customer_fiscal_entities_response_dict)

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