Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.18 KB

File metadata and controls

32 lines (23 loc) · 1.18 KB

SeoSerpViewport

Viewport settings used only with include_pixel_rankings.

Properties

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]

Example

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)

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