| Name |
Type |
Description |
Notes |
| index |
int |
|
[optional] |
| limit |
int |
|
|
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)
[Back to Model list] [Back to API list] [Back to README]