mirror of
https://github.com/discountry/ritmex-bot.git
synced 2026-09-09 16:28:06 +00:00
1005 B
1005 B
ReqGetRangeWithIndex
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| index | int | [optional] | |
| limit | int |
Example
from lighter.models.req_get_range_with_index import ReqGetRangeWithIndex
# TODO update the JSON string below
json = "{}"
# create an instance of ReqGetRangeWithIndex from a JSON string
req_get_range_with_index_instance = ReqGetRangeWithIndex.from_json(json)
# print the JSON string representation of the object
print(ReqGetRangeWithIndex.to_json())
# convert the object into a dict
req_get_range_with_index_dict = req_get_range_with_index_instance.to_dict()
# create an instance of ReqGetRangeWithIndex from a dict
req_get_range_with_index_from_dict = ReqGetRangeWithIndex.from_dict(req_get_range_with_index_dict)