| Name | Type | Description | Notes |
|---|---|---|---|
| address | CustomerFiscalEntitiesRequestAddress | [optional] | |
| tax_id | str | [optional] | |
| str | [optional] | ||
| phone | str | [optional] | |
| metadata | Dict[str, object] | [optional] | |
| company_name | str | [optional] |
from conekta.models.customer_update_fiscal_entities_request import CustomerUpdateFiscalEntitiesRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CustomerUpdateFiscalEntitiesRequest from a JSON string
customer_update_fiscal_entities_request_instance = CustomerUpdateFiscalEntitiesRequest.from_json(json)
# print the JSON string representation of the object
print CustomerUpdateFiscalEntitiesRequest.to_json()
# convert the object into a dict
customer_update_fiscal_entities_request_dict = customer_update_fiscal_entities_request_instance.to_dict()
# create an instance of CustomerUpdateFiscalEntitiesRequest from a dict
customer_update_fiscal_entities_request_form_dict = customer_update_fiscal_entities_request.from_dict(customer_update_fiscal_entities_request_dict)