Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.44 KB

OrderFiscalEntityRequest.md

File metadata and controls

35 lines (26 loc) · 1.44 KB

OrderFiscalEntityRequest

Fiscal entity of the order, Currently it is a purely informative field

Properties

Name Type Description Notes
address FiscalEntityAddress
email 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]

Example

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)

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