| Name |
Type |
Description |
Notes |
| url |
str |
Page URL |
|
| title |
str |
Page title |
|
| description |
str |
Page description |
[optional] |
| word_count |
int |
Page word count |
[optional] |
from rankvectors.models.page_info import PageInfo
# TODO update the JSON string below
json = "{}"
# create an instance of PageInfo from a JSON string
page_info_instance = PageInfo.from_json(json)
# print the JSON string representation of the object
print(PageInfo.to_json())
# convert the object into a dict
page_info_dict = page_info_instance.to_dict()
# create an instance of PageInfo from a dict
page_info_from_dict = PageInfo.from_dict(page_info_dict)
[Back to Model list] [Back to API list] [Back to README]