| Name |
Type |
Description |
Notes |
| score |
int |
Numeric score for content structure (0-15) |
[optional] |
| status |
str |
|
[optional] |
| explanation |
str |
|
[optional] |
| has_semantic_elements |
bool |
Whether semantic HTML elements are used |
[optional] |
| has_landmarks |
bool |
Whether ARIA landmarks are present |
[optional] |
from wordlift_client.models.content_structure import ContentStructure
# TODO update the JSON string below
json = "{}"
# create an instance of ContentStructure from a JSON string
content_structure_instance = ContentStructure.from_json(json)
# print the JSON string representation of the object
print(ContentStructure.to_json())
# convert the object into a dict
content_structure_dict = content_structure_instance.to_dict()
# create an instance of ContentStructure from a dict
content_structure_from_dict = ContentStructure.from_dict(content_structure_dict)
[Back to Model list] [Back to API list] [Back to README]