Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1013 Bytes

WebpageProperties.md

File metadata and controls

32 lines (23 loc) · 1013 Bytes

WebpageProperties

Properties

Name Type Description Notes
entities List[str]
iri str
query str [optional]
url str

Example

from wordlift_client.models.webpage_properties import WebpageProperties

# TODO update the JSON string below
json = "{}"
# create an instance of WebpageProperties from a JSON string
webpage_properties_instance = WebpageProperties.from_json(json)
# print the JSON string representation of the object
print(WebpageProperties.to_json())

# convert the object into a dict
webpage_properties_dict = webpage_properties_instance.to_dict()
# create an instance of WebpageProperties from a dict
webpage_properties_from_dict = WebpageProperties.from_dict(webpage_properties_dict)

[Back to Model list] [Back to API list] [Back to README]