Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

ReqGetRangeWithIndexSortable

Properties

Name Type Description Notes
index int [optional]
limit int [optional]
sort str [optional] [default to 'asc']

Example

from lighter.models.req_get_range_with_index_sortable import ReqGetRangeWithIndexSortable

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

# convert the object into a dict
req_get_range_with_index_sortable_dict = req_get_range_with_index_sortable_instance.to_dict()
# create an instance of ReqGetRangeWithIndexSortable from a dict
req_get_range_with_index_sortable_from_dict = ReqGetRangeWithIndexSortable.from_dict(req_get_range_with_index_sortable_dict)

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