Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.08 KB

File metadata and controls

29 lines (20 loc) · 1.08 KB

CrawlersRunRequest

Properties

Name Type Description Notes
urls List[str] Optional URLs to crawl (overrides crawler's default URL configuration). If not provided, the crawler will use its configured URLs or perform a full crawl. [optional]

Example

from quantcdn.models.crawlers_run_request import CrawlersRunRequest

# TODO update the JSON string below
json = "{}"
# create an instance of CrawlersRunRequest from a JSON string
crawlers_run_request_instance = CrawlersRunRequest.from_json(json)
# print the JSON string representation of the object
print(CrawlersRunRequest.to_json())

# convert the object into a dict
crawlers_run_request_dict = crawlers_run_request_instance.to_dict()
# create an instance of CrawlersRunRequest from a dict
crawlers_run_request_from_dict = CrawlersRunRequest.from_dict(crawlers_run_request_dict)

[Back to Model list] [Back to API list] [Back to README]