Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1018 Bytes

File metadata and controls

33 lines (24 loc) · 1018 Bytes

PageData

Properties

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]

Example

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]