Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.57 KB

File metadata and controls

30 lines (21 loc) · 1.57 KB

SeoBacklinksBulkNewLostReferringDomainsRequest

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 referring domains. Minimum 2019-01-30; defaults to one month ago. [optional]

Example

from unifapi.models.seo_backlinks_bulk_new_lost_referring_domains_request import SeoBacklinksBulkNewLostReferringDomainsRequest

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

# convert the object into a dict
seo_backlinks_bulk_new_lost_referring_domains_request_dict = seo_backlinks_bulk_new_lost_referring_domains_request_instance.to_dict()
# create an instance of SeoBacklinksBulkNewLostReferringDomainsRequest from a dict
seo_backlinks_bulk_new_lost_referring_domains_request_from_dict = SeoBacklinksBulkNewLostReferringDomainsRequest.from_dict(seo_backlinks_bulk_new_lost_referring_domains_request_dict)

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