Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.77 KB

File metadata and controls

36 lines (27 loc) · 1.77 KB

SeoDomainIntersectionRequest

Properties

Name Type Description Notes
target1 str First domain, such as example.com.
target2 str Second domain to compare against.
location SeoDomainIntersectionLocation [optional]
language str Search language as an ISO code or full language name. Defaults to en. [optional]
intersections bool When true (default), return keywords both domains rank for. When false, return keywords the first domain ranks for but the second does not. [optional]
limit int Maximum number of keywords to return. Defaults to 100. [optional]
offset int Number of keywords to skip from the start of the results. [optional]
view SeoKeywordView [optional]

Example

from unifapi.models.seo_domain_intersection_request import SeoDomainIntersectionRequest

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

# convert the object into a dict
seo_domain_intersection_request_dict = seo_domain_intersection_request_instance.to_dict()
# create an instance of SeoDomainIntersectionRequest from a dict
seo_domain_intersection_request_from_dict = SeoDomainIntersectionRequest.from_dict(seo_domain_intersection_request_dict)

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