You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Backlink metrics grouped by period, oldest to newest.
Example
fromunifapi.models.seo_backlinks_timeseries_responseimportSeoBacklinksTimeseriesResponse# TODO update the JSON string belowjson="{}"# create an instance of SeoBacklinksTimeseriesResponse from a JSON stringseo_backlinks_timeseries_response_instance=SeoBacklinksTimeseriesResponse.from_json(json)
# print the JSON string representation of the objectprint(SeoBacklinksTimeseriesResponse.to_json())
# convert the object into a dictseo_backlinks_timeseries_response_dict=seo_backlinks_timeseries_response_instance.to_dict()
# create an instance of SeoBacklinksTimeseriesResponse from a dictseo_backlinks_timeseries_response_from_dict=SeoBacklinksTimeseriesResponse.from_dict(seo_backlinks_timeseries_response_dict)