| Name |
Type |
Description |
Notes |
| id |
str |
Page identifier |
|
| project_id |
str |
Project identifier |
|
| url |
str |
Page URL |
|
| title |
str |
Page title |
[optional] |
| word_count |
int |
Word count |
[optional] |
| internal_links |
List[object] |
Internal links on the page |
[optional] |
| external_links |
List[object] |
External links on the page |
[optional] |
| synced_at |
datetime |
Last sync timestamp |
[optional] |
| updated_at |
datetime |
Last update timestamp |
[optional] |
from rankvectors.models.page import Page
# TODO update the JSON string below
json = "{}"
# create an instance of Page from a JSON string
page_instance = Page.from_json(json)
# print the JSON string representation of the object
print(Page.to_json())
# convert the object into a dict
page_dict = page_instance.to_dict()
# create an instance of Page from a dict
page_from_dict = Page.from_dict(page_dict)
[Back to Model list] [Back to API list] [Back to README]