Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.38 KB

File metadata and controls

30 lines (21 loc) · 1.38 KB

SeoBacklinksBulkPagesSummaryResponse

Properties

Name Type Description Notes
view SeoBacklinksView
results List[SeoBacklinksBulkPageSummaryItem] Backlink summary for each requested page, domain, or subdomain. Each target is one billable record.

Example

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)

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