| Name |
Type |
Description |
Notes |
| id |
str |
Change identifier |
|
| page_id |
str |
Page identifier |
|
| project_id |
str |
Project identifier |
|
| change_status |
str |
Change status |
|
| visibility |
str |
Page visibility |
|
| previous_scrape_at |
datetime |
Previous scrape timestamp |
[optional] |
| current_scrape_at |
datetime |
Current scrape timestamp |
|
| page |
PageChangePage |
|
[optional] |
from rankvectors.models.page_change import PageChange
# TODO update the JSON string below
json = "{}"
# create an instance of PageChange from a JSON string
page_change_instance = PageChange.from_json(json)
# print the JSON string representation of the object
print(PageChange.to_json())
# convert the object into a dict
page_change_dict = page_change_instance.to_dict()
# create an instance of PageChange from a dict
page_change_from_dict = PageChange.from_dict(page_change_dict)
[Back to Model list] [Back to API list] [Back to README]