Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.48 KB

File metadata and controls

35 lines (26 loc) · 1.48 KB

JsRendering

Properties

Name Type Description Notes
score int Numeric score for JavaScript rendering (0-15) [optional]
status str [optional]
explanation str [optional]
framework_detected str Detected JavaScript framework (None, React, Vue, Angular, Next.js, Nuxt, Gatsby, Other) [optional]
rendering_type str Type of rendering used by the site [optional]
content_availability str Description of content availability in HTML (e.g., "All content in HTML", "Mostly in HTML", "Partially in JS", "Mostly in JS") [optional]
recommendations List[str] Recommendations for improving JS rendering [optional]

Example

from wordlift_client.models.js_rendering import JsRendering

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

# convert the object into a dict
js_rendering_dict = js_rendering_instance.to_dict()
# create an instance of JsRendering from a dict
js_rendering_from_dict = JsRendering.from_dict(js_rendering_dict)

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