Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 962 Bytes

File metadata and controls

31 lines (22 loc) · 962 Bytes

PageChangePage

Properties

Name Type Description Notes
id str [optional]
url str [optional]
title str [optional]

Example

from rankvectors.models.page_change_page import PageChangePage

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

# convert the object into a dict
page_change_page_dict = page_change_page_instance.to_dict()
# create an instance of PageChangePage from a dict
page_change_page_from_dict = PageChangePage.from_dict(page_change_page_dict)

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