Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.49 KB

File metadata and controls

33 lines (24 loc) · 1.49 KB

SeoBacklinksTimeseriesResponse

Properties

Name Type Description Notes
target str Target echoed from the request.
group_range str Granularity used to group the series. [optional]
date_from str Start date of the series echoed from the request. [optional]
date_to str End date of the series echoed from the request. [optional]
series List[SeoBacklinksTimeseriesItem] Backlink metrics grouped by period, oldest to newest.

Example

from unifapi.models.seo_backlinks_timeseries_response import SeoBacklinksTimeseriesResponse

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

# convert the object into a dict
seo_backlinks_timeseries_response_dict = seo_backlinks_timeseries_response_instance.to_dict()
# create an instance of SeoBacklinksTimeseriesResponse from a dict
seo_backlinks_timeseries_response_from_dict = SeoBacklinksTimeseriesResponse.from_dict(seo_backlinks_timeseries_response_dict)

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