Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 907 Bytes

OrdersResponse.md

File metadata and controls

29 lines (20 loc) · 907 Bytes

OrdersResponse

Properties

Name Type Description Notes
data List[OrderResponse]

Example

from conekta.models.orders_response import OrdersResponse

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

# convert the object into a dict
orders_response_dict = orders_response_instance.to_dict()
# create an instance of OrdersResponse from a dict
orders_response_from_dict = OrdersResponse.from_dict(orders_response_dict)

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