Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.23 KB

File metadata and controls

32 lines (23 loc) · 1.23 KB

GetOrdersRequest

Properties

Name Type Description Notes
operator str The operator to combine the filters with [optional] [default to 'AND']
filters GetOrdersRequestFilters [optional]
limit int The maximum amount of orders you want to receive [optional] [default to 10]
skip int The amount of orders you want to skip [optional] [default to 0]

Example

from klimapi_python.models.get_orders_request import GetOrdersRequest

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

# convert the object into a dict
get_orders_request_dict = get_orders_request_instance.to_dict()
# create an instance of GetOrdersRequest from a dict
get_orders_request_from_dict = GetOrdersRequest.from_dict(get_orders_request_dict)

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