Name |
Type |
Description |
Notes |
abstract |
str |
|
[optional] |
date_published |
date |
|
[optional] |
headline |
str |
|
[optional] |
image |
str |
|
[optional] |
text |
str |
|
[optional] |
types |
List[str] |
|
[optional] |
url |
str |
|
[optional] |
from wordlift_client.models.web_page import WebPage
# TODO update the JSON string below
json = "{}"
# create an instance of WebPage from a JSON string
web_page_instance = WebPage.from_json(json)
# print the JSON string representation of the object
print(WebPage.to_json())
# convert the object into a dict
web_page_dict = web_page_instance.to_dict()
# create an instance of WebPage from a dict
web_page_from_dict = WebPage.from_dict(web_page_dict)
[Back to Model list] [Back to API list] [Back to README]