| Name |
Type |
Description |
Notes |
| id |
str |
Unique crawl identifier |
|
| project_id |
str |
Project identifier |
|
| status |
str |
Crawl status |
|
| started_at |
datetime |
Crawl start timestamp |
|
| completed_at |
datetime |
Crawl completion timestamp |
[optional] |
| pages_crawled |
int |
Number of pages crawled |
[optional] |
| error_message |
str |
Error message if crawl failed |
[optional] |
from rankvectors.models.crawl import Crawl
# TODO update the JSON string below
json = "{}"
# create an instance of Crawl from a JSON string
crawl_instance = Crawl.from_json(json)
# print the JSON string representation of the object
print(Crawl.to_json())
# convert the object into a dict
crawl_dict = crawl_instance.to_dict()
# create an instance of Crawl from a dict
crawl_from_dict = Crawl.from_dict(crawl_dict)
[Back to Model list] [Back to API list] [Back to README]