| Name | Type | Description | Notes |
|---|---|---|---|
| target | str | Target echoed from the request. | |
| view | SeoBacklinksView | ||
| total_count | int | Total number of referring domains available in DataForSEO's database. | [optional] |
| results | List[SeoReferringDomainItem] | Referring domains pointing to the target, with backlink counters. Each domain is one billable record. |
from unifapi.models.seo_referring_domains_response import SeoReferringDomainsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SeoReferringDomainsResponse from a JSON string
seo_referring_domains_response_instance = SeoReferringDomainsResponse.from_json(json)
# print the JSON string representation of the object
print(SeoReferringDomainsResponse.to_json())
# convert the object into a dict
seo_referring_domains_response_dict = seo_referring_domains_response_instance.to_dict()
# create an instance of SeoReferringDomainsResponse from a dict
seo_referring_domains_response_from_dict = SeoReferringDomainsResponse.from_dict(seo_referring_domains_response_dict)