Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.58 KB

File metadata and controls

35 lines (26 loc) · 1.58 KB

SeoDomainIntersectionResponse

Properties

Name Type Description Notes
target1 str First domain echoed from the request.
target2 str Second domain echoed from the request.
location str
language str
view SeoKeywordView
total_count int Total number of intersecting keywords available in DataForSEO's database. [optional]
results List[SeoDomainIntersectionItem] Keywords shared by the two domains, with each domain's ranking position. Each keyword is one billable record.

Example

from unifapi.models.seo_domain_intersection_response import SeoDomainIntersectionResponse

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

# convert the object into a dict
seo_domain_intersection_response_dict = seo_domain_intersection_response_instance.to_dict()
# create an instance of SeoDomainIntersectionResponse from a dict
seo_domain_intersection_response_from_dict = SeoDomainIntersectionResponse.from_dict(seo_domain_intersection_response_dict)

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