Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.84 KB

File metadata and controls

36 lines (27 loc) · 1.84 KB

SeoDomainIntersectionItemSecondDomain

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_domain_intersection_item_second_domain import SeoDomainIntersectionItemSecondDomain

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

# convert the object into a dict
seo_domain_intersection_item_second_domain_dict = seo_domain_intersection_item_second_domain_instance.to_dict()
# create an instance of SeoDomainIntersectionItemSecondDomain from a dict
seo_domain_intersection_item_second_domain_from_dict = SeoDomainIntersectionItemSecondDomain.from_dict(seo_domain_intersection_item_second_domain_dict)

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