| Name | Type | Description | Notes |
|---|---|---|---|
| view | SeoBacklinksView | ||
| results | List[SeoBacklinksBulkPageSummaryItem] | Backlink summary for each requested page, domain, or subdomain. Each target is one billable record. |
from unifapi.models.seo_backlinks_bulk_pages_summary_response import SeoBacklinksBulkPagesSummaryResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SeoBacklinksBulkPagesSummaryResponse from a JSON string
seo_backlinks_bulk_pages_summary_response_instance = SeoBacklinksBulkPagesSummaryResponse.from_json(json)
# print the JSON string representation of the object
print(SeoBacklinksBulkPagesSummaryResponse.to_json())
# convert the object into a dict
seo_backlinks_bulk_pages_summary_response_dict = seo_backlinks_bulk_pages_summary_response_instance.to_dict()
# create an instance of SeoBacklinksBulkPagesSummaryResponse from a dict
seo_backlinks_bulk_pages_summary_response_from_dict = SeoBacklinksBulkPagesSummaryResponse.from_dict(seo_backlinks_bulk_pages_summary_response_dict)