Viewport settings used only with include_pixel_rankings.
| Name | Type | Description | Notes |
|---|---|---|---|
| width | int | Browser viewport width for pixel ranking calculations. | [optional] |
| height | int | Browser viewport height for pixel ranking calculations. | [optional] |
| pixel_ratio | float | Browser device pixel ratio for pixel ranking calculations. | [optional] |
from unifapi.models.seo_serp_viewport import SeoSerpViewport
# TODO update the JSON string below
json = "{}"
# create an instance of SeoSerpViewport from a JSON string
seo_serp_viewport_instance = SeoSerpViewport.from_json(json)
# print the JSON string representation of the object
print(SeoSerpViewport.to_json())
# convert the object into a dict
seo_serp_viewport_dict = seo_serp_viewport_instance.to_dict()
# create an instance of SeoSerpViewport from a dict
seo_serp_viewport_from_dict = SeoSerpViewport.from_dict(seo_serp_viewport_dict)