Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.7 KB

File metadata and controls

35 lines (26 loc) · 1.7 KB

SeoBacklinksTimeseriesNewLostItem

Properties

Name Type Description Notes
var_date str Last day of the grouped period.
new_backlinks int Backlinks gained during the period. [optional]
lost_backlinks int Backlinks lost during the period. [optional]
new_referring_domains int Referring domains gained during the period. [optional]
lost_referring_domains int Referring domains lost during the period. [optional]
new_referring_main_domains int Referring root domains gained during the period. [optional]
lost_referring_main_domains int Referring root domains lost during the period. [optional]

Example

from unifapi.models.seo_backlinks_timeseries_new_lost_item import SeoBacklinksTimeseriesNewLostItem

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

# convert the object into a dict
seo_backlinks_timeseries_new_lost_item_dict = seo_backlinks_timeseries_new_lost_item_instance.to_dict()
# create an instance of SeoBacklinksTimeseriesNewLostItem from a dict
seo_backlinks_timeseries_new_lost_item_from_dict = SeoBacklinksTimeseriesNewLostItem.from_dict(seo_backlinks_timeseries_new_lost_item_dict)

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