Files
ritmex-bot/docs/lighter/lighter-python-main/docs/ReqGetRangeWithIndex.md
T

31 lines
1005 B
Markdown

# ReqGetRangeWithIndex
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**index** | **int** | | [optional]
**limit** | **int** | |
## Example
```python
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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)