Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.63 KB

File metadata and controls

33 lines (24 loc) · 1.63 KB

SeoBacklinksTimeseriesNewLostResponse

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[SeoBacklinksTimeseriesNewLostItem] New/lost backlink and referring-domain counts grouped by period, oldest to newest.

Example

from unifapi.models.seo_backlinks_timeseries_new_lost_response import SeoBacklinksTimeseriesNewLostResponse

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

# convert the object into a dict
seo_backlinks_timeseries_new_lost_response_dict = seo_backlinks_timeseries_new_lost_response_instance.to_dict()
# create an instance of SeoBacklinksTimeseriesNewLostResponse from a dict
seo_backlinks_timeseries_new_lost_response_from_dict = SeoBacklinksTimeseriesNewLostResponse.from_dict(seo_backlinks_timeseries_new_lost_response_dict)

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