| Name |
Type |
Description |
Notes |
| id |
str |
|
[optional] |
| url |
str |
|
[optional] |
| title |
str |
|
[optional] |
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]