Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.55 KB

File metadata and controls

32 lines (23 loc) · 1.55 KB

SeoBacklinksBulkPagesSummaryRequest

Properties

Name Type Description Notes
targets List[str] Domains, subdomains, or pages to analyze (up to 1000). Domains/subdomains without https:// and www.; pages as absolute URLs.
include_subdomains bool Include backlinks pointing to the target's subdomains. Defaults to true. [optional]
rank_scale SeoBacklinksRankScale [optional]
view SeoBacklinksView [optional]

Example

from unifapi.models.seo_backlinks_bulk_pages_summary_request import SeoBacklinksBulkPagesSummaryRequest

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

# convert the object into a dict
seo_backlinks_bulk_pages_summary_request_dict = seo_backlinks_bulk_pages_summary_request_instance.to_dict()
# create an instance of SeoBacklinksBulkPagesSummaryRequest from a dict
seo_backlinks_bulk_pages_summary_request_from_dict = SeoBacklinksBulkPagesSummaryRequest.from_dict(seo_backlinks_bulk_pages_summary_request_dict)

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