| Name | Type | Description | Notes |
|---|---|---|---|
| address | CustomerFiscalEntitiesRequestAddress | ||
| tax_id | str | [optional] | |
| str | [optional] | ||
| phone | str | [optional] | |
| metadata | Dict[str, object] | [optional] | |
| company_name | str | [optional] |
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)