You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Keywords shared by the two domains, with each domain's ranking position. Each keyword is one billable record.
Example
fromunifapi.models.seo_domain_intersection_responseimportSeoDomainIntersectionResponse# TODO update the JSON string belowjson="{}"# create an instance of SeoDomainIntersectionResponse from a JSON stringseo_domain_intersection_response_instance=SeoDomainIntersectionResponse.from_json(json)
# print the JSON string representation of the objectprint(SeoDomainIntersectionResponse.to_json())
# convert the object into a dictseo_domain_intersection_response_dict=seo_domain_intersection_response_instance.to_dict()
# create an instance of SeoDomainIntersectionResponse from a dictseo_domain_intersection_response_from_dict=SeoDomainIntersectionResponse.from_dict(seo_domain_intersection_response_dict)