Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

HtmlSemantics

Legacy field - always returns status Unknown

Properties

Name Type Description Notes
status str Always returns Unknown as this analysis is integrated into Content Structure [optional]
explanation str Explanation that this is integrated into Content Structure [optional]

Example

from wordlift_client.models.html_semantics import HtmlSemantics

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

# convert the object into a dict
html_semantics_dict = html_semantics_instance.to_dict()
# create an instance of HtmlSemantics from a dict
html_semantics_from_dict = HtmlSemantics.from_dict(html_semantics_dict)

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