| Name |
Type |
Description |
Notes |
| page_url |
str |
URL of the page |
|
| change_status |
str |
Change status |
|
| visibility |
str |
Page visibility |
|
| previous_scrape_at |
datetime |
Previous scrape timestamp |
[optional] |
from rankvectors.models.change_result import ChangeResult
# TODO update the JSON string below
json = "{}"
# create an instance of ChangeResult from a JSON string
change_result_instance = ChangeResult.from_json(json)
# print the JSON string representation of the object
print(ChangeResult.to_json())
# convert the object into a dict
change_result_dict = change_result_instance.to_dict()
# create an instance of ChangeResult from a dict
change_result_from_dict = ChangeResult.from_dict(change_result_dict)
[Back to Model list] [Back to API list] [Back to README]