| Name | Type | Description | Notes |
|---|---|---|---|
| target | str | Target echoed from the request. | |
| view | SeoBacklinksView | ||
| total_count | int | Total number of pages available in DataForSEO's database. | [optional] |
| results | List[SeoBacklinksDomainPageSummaryItem] | Per-page backlink summaries for the target, with backlink counters. Each page is one billable record. |
from unifapi.models.seo_backlinks_domain_pages_summary_response import SeoBacklinksDomainPagesSummaryResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SeoBacklinksDomainPagesSummaryResponse from a JSON string
seo_backlinks_domain_pages_summary_response_instance = SeoBacklinksDomainPagesSummaryResponse.from_json(json)
# print the JSON string representation of the object
print(SeoBacklinksDomainPagesSummaryResponse.to_json())
# convert the object into a dict
seo_backlinks_domain_pages_summary_response_dict = seo_backlinks_domain_pages_summary_response_instance.to_dict()
# create an instance of SeoBacklinksDomainPagesSummaryResponse from a dict
seo_backlinks_domain_pages_summary_response_from_dict = SeoBacklinksDomainPagesSummaryResponse.from_dict(seo_backlinks_domain_pages_summary_response_dict)