| Name |
Type |
Description |
Notes |
| limit |
int |
Maximum number of pages to crawl |
[optional] |
from rankvectors.models.start_crawl_request import StartCrawlRequest
# TODO update the JSON string below
json = "{}"
# create an instance of StartCrawlRequest from a JSON string
start_crawl_request_instance = StartCrawlRequest.from_json(json)
# print the JSON string representation of the object
print(StartCrawlRequest.to_json())
# convert the object into a dict
start_crawl_request_dict = start_crawl_request_instance.to_dict()
# create an instance of StartCrawlRequest from a dict
start_crawl_request_from_dict = StartCrawlRequest.from_dict(start_crawl_request_dict)
[Back to Model list] [Back to API list] [Back to README]