Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.68 KB

File metadata and controls

32 lines (23 loc) · 1.68 KB

SeoBacklinksDomainIntersectionResponse

Properties

Name Type Description Notes
targets List[str] The requested targets, in request order, echoed back. Each referring_to entry's target matches one of these.
view SeoBacklinksView
total_count int Total number of intersecting domains available in DataForSEO's database. [optional]
results List[SeoBacklinksDomainIntersectionItem] Domains that link to the requested targets, with per-target backlink metrics. Each domain is one billable record.

Example

from unifapi.models.seo_backlinks_domain_intersection_response import SeoBacklinksDomainIntersectionResponse

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

# convert the object into a dict
seo_backlinks_domain_intersection_response_dict = seo_backlinks_domain_intersection_response_instance.to_dict()
# create an instance of SeoBacklinksDomainIntersectionResponse from a dict
seo_backlinks_domain_intersection_response_from_dict = SeoBacklinksDomainIntersectionResponse.from_dict(seo_backlinks_domain_intersection_response_dict)

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