Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.52 KB

File metadata and controls

35 lines (26 loc) · 1.52 KB

OrderUpdateFiscalEntityRequest

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]
name str Name of the fiscal entity [optional]
metadata Dict[str, object] Metadata associated with 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_update_fiscal_entity_request import OrderUpdateFiscalEntityRequest

# TODO update the JSON string below
json = "{}"
# create an instance of OrderUpdateFiscalEntityRequest from a JSON string
order_update_fiscal_entity_request_instance = OrderUpdateFiscalEntityRequest.from_json(json)
# print the JSON string representation of the object
print(OrderUpdateFiscalEntityRequest.to_json())

# convert the object into a dict
order_update_fiscal_entity_request_dict = order_update_fiscal_entity_request_instance.to_dict()
# create an instance of OrderUpdateFiscalEntityRequest from a dict
order_update_fiscal_entity_request_from_dict = OrderUpdateFiscalEntityRequest.from_dict(order_update_fiscal_entity_request_dict)

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