Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 964 Bytes

File metadata and controls

29 lines (20 loc) · 964 Bytes

StartCrawlRequest

Properties

Name Type Description Notes
limit int Maximum number of pages to crawl [optional]

Example

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]