| Name | Type | Description | Notes |
|---|---|---|---|
| keyword | str | Keyword echoed from the request. | |
| location | str | ||
| language | str | ||
| results | List[SeoHistoricalSerpItem] | SERP composition snapshots for the keyword over time. Each snapshot is one billable record. |
from unifapi.models.seo_historical_serps_response import SeoHistoricalSerpsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SeoHistoricalSerpsResponse from a JSON string
seo_historical_serps_response_instance = SeoHistoricalSerpsResponse.from_json(json)
# print the JSON string representation of the object
print(SeoHistoricalSerpsResponse.to_json())
# convert the object into a dict
seo_historical_serps_response_dict = seo_historical_serps_response_instance.to_dict()
# create an instance of SeoHistoricalSerpsResponse from a dict
seo_historical_serps_response_from_dict = SeoHistoricalSerpsResponse.from_dict(seo_historical_serps_response_dict)