| Name | Type | Description | Notes |
|---|---|---|---|
| target | str | Domain, subdomain, or page to analyze. A domain or subdomain is specified without https:// and www. (example.com); a page is specified as an absolute URL (https://example.com/blog/). | |
| date_from | str | Start date (yyyy-mm-dd) for the history. Minimum 2019-01-30; defaults to one year ago. | [optional] |
| date_to | str | End date (yyyy-mm-dd). Defaults to today. | [optional] |
| rank_scale | SeoBacklinksRankScale | [optional] | |
| view | SeoBacklinksView | [optional] |
from unifapi.models.seo_backlinks_history_request import SeoBacklinksHistoryRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SeoBacklinksHistoryRequest from a JSON string
seo_backlinks_history_request_instance = SeoBacklinksHistoryRequest.from_json(json)
# print the JSON string representation of the object
print(SeoBacklinksHistoryRequest.to_json())
# convert the object into a dict
seo_backlinks_history_request_dict = seo_backlinks_history_request_instance.to_dict()
# create an instance of SeoBacklinksHistoryRequest from a dict
seo_backlinks_history_request_from_dict = SeoBacklinksHistoryRequest.from_dict(seo_backlinks_history_request_dict)