| Name |
Type |
Description |
Notes |
| url |
str |
Page URL |
|
| title |
str |
Page title |
[optional] |
| content |
str |
Page content |
[optional] |
| word_count |
int |
Word count |
[optional] |
| description |
str |
Page description/meta |
[optional] |
from rankvectors.models.page_data import PageData
# TODO update the JSON string below
json = "{}"
# create an instance of PageData from a JSON string
page_data_instance = PageData.from_json(json)
# print the JSON string representation of the object
print(PageData.to_json())
# convert the object into a dict
page_data_dict = page_data_instance.to_dict()
# create an instance of PageData from a dict
page_data_from_dict = PageData.from_dict(page_data_dict)
[Back to Model list] [Back to API list] [Back to README]