Properties
| Name |
Type |
Description |
Notes |
| offset |
int |
Param says to skip that many links before beginning to return links. Default: 0. |
[optional] |
| limit |
int |
Param says to limit the count of returned links. Default: 1000. |
[optional] |
Example
from odm_api.models.page_request import PageRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PageRequest from a JSON string
page_request_instance = PageRequest.from_json(json)
# print the JSON string representation of the object
print(PageRequest.to_json())
# convert the object into a dict
page_request_dict = page_request_instance.to_dict()
# create an instance of PageRequest from a dict
page_request_from_dict = PageRequest.from_dict(page_request_dict)
[Back to Model list] [Back to API list] [Back to README]