Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.47 KB

File metadata and controls

30 lines (21 loc) · 1.47 KB

SeoBacklinksBulkNewLostBacklinksRequest

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.
date_from str Start date (yyyy-mm-dd) for counting new and lost backlinks. Minimum 2019-01-30; defaults to one month ago. [optional]

Example

from unifapi.models.seo_backlinks_bulk_new_lost_backlinks_request import SeoBacklinksBulkNewLostBacklinksRequest

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

# convert the object into a dict
seo_backlinks_bulk_new_lost_backlinks_request_dict = seo_backlinks_bulk_new_lost_backlinks_request_instance.to_dict()
# create an instance of SeoBacklinksBulkNewLostBacklinksRequest from a dict
seo_backlinks_bulk_new_lost_backlinks_request_from_dict = SeoBacklinksBulkNewLostBacklinksRequest.from_dict(seo_backlinks_bulk_new_lost_backlinks_request_dict)

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