Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.02 KB

File metadata and controls

32 lines (23 loc) · 1.02 KB

ChangeResult

Properties

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]

Example

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]