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