Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.58 KB

File metadata and controls

37 lines (28 loc) · 1.58 KB

SeoSerpElement

Where the first domain ranks for the keyword.

Properties

Name Type Description Notes
rank_group int Position in SERP grouping organic results together (ignores ads/features). [optional]
rank_absolute int Absolute position in SERP counting every element. [optional]
position str Side of the SERP the element appears on: left or right. [optional]
domain str Domain that holds the ranking page. [optional]
title str Title of the ranking page. [optional]
url str URL of the ranking page. [optional]
etv float Estimated monthly traffic the keyword sends to this URL. [optional]
estimated_paid_traffic_cost float Estimated monthly ad cost (USD) of the traffic this URL receives. [optional]

Example

from unifapi.models.seo_serp_element import SeoSerpElement

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

# convert the object into a dict
seo_serp_element_dict = seo_serp_element_instance.to_dict()
# create an instance of SeoSerpElement from a dict
seo_serp_element_from_dict = SeoSerpElement.from_dict(seo_serp_element_dict)

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