| Name | Type | Description | Notes |
|---|---|---|---|
| target | str | Target echoed from the request. | |
| view | SeoBacklinksView | ||
| date_from | str | Start date of the history echoed from the request. | [optional] |
| date_to | str | End date of the history echoed from the request. | [optional] |
| series | List[SeoBacklinksHistoryItem] | Monthly snapshots of the target's backlink profile, oldest to newest. |
from unifapi.models.seo_backlinks_history_response import SeoBacklinksHistoryResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SeoBacklinksHistoryResponse from a JSON string
seo_backlinks_history_response_instance = SeoBacklinksHistoryResponse.from_json(json)
# print the JSON string representation of the object
print(SeoBacklinksHistoryResponse.to_json())
# convert the object into a dict
seo_backlinks_history_response_dict = seo_backlinks_history_response_instance.to_dict()
# create an instance of SeoBacklinksHistoryResponse from a dict
seo_backlinks_history_response_from_dict = SeoBacklinksHistoryResponse.from_dict(seo_backlinks_history_response_dict)