Fiscal entity of the order, Currently it is a purely informative field
Name | Type | Description | Notes |
---|---|---|---|
address | FiscalEntityAddress | ||
str | Email of the fiscal entity | [optional] | |
metadata | Dict[str, object] | Metadata associated with the fiscal entity | [optional] |
name | str | Name of the fiscal entity | [optional] |
phone | str | Phone of the fiscal entity | [optional] |
tax_id | str | Tax ID of the fiscal entity | [optional] |
from conekta.models.order_fiscal_entity_request import OrderFiscalEntityRequest
# TODO update the JSON string below
json = "{}"
# create an instance of OrderFiscalEntityRequest from a JSON string
order_fiscal_entity_request_instance = OrderFiscalEntityRequest.from_json(json)
# print the JSON string representation of the object
print(OrderFiscalEntityRequest.to_json())
# convert the object into a dict
order_fiscal_entity_request_dict = order_fiscal_entity_request_instance.to_dict()
# create an instance of OrderFiscalEntityRequest from a dict
order_fiscal_entity_request_from_dict = OrderFiscalEntityRequest.from_dict(order_fiscal_entity_request_dict)