Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.19 KB

File metadata and controls

31 lines (23 loc) · 1.19 KB

OrderResponseFiscalEntity

Properties

Name Type Description Notes
address OrderResponseFiscalEntityAddress [optional]
tax_id str [optional]
id str [optional]
object str [optional]

Example

from conekta.models.order_response_fiscal_entity import OrderResponseFiscalEntity

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

# convert the object into a dict
order_response_fiscal_entity_dict = order_response_fiscal_entity_instance.to_dict()
# create an instance of OrderResponseFiscalEntity from a dict
order_response_fiscal_entity_form_dict = order_response_fiscal_entity.from_dict(order_response_fiscal_entity_dict)

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