Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 2.07 KB

File metadata and controls

40 lines (31 loc) · 2.07 KB

SeoBacklinksTimeseriesItem

Properties

Name Type Description Notes
var_date str Last day of the grouped period.
rank int Backlink rank of the target at the period end. [optional]
backlinks int Backlinks pointing to the target. [optional]
backlinks_nofollow int Nofollow backlinks pointing to the target. [optional]
referring_pages int Referring pages pointing to the target. [optional]
referring_pages_nofollow int Referring pages linking only with nofollow backlinks. [optional]
referring_domains int Referring domains pointing to the target. [optional]
referring_domains_nofollow int Referring domains linking only with nofollow backlinks. [optional]
referring_main_domains int Referring root domains pointing to the target. [optional]
referring_main_domains_nofollow int Referring root domains linking only with nofollow backlinks. [optional]
referring_ips int Referring IP addresses pointing to the target. [optional]
referring_subnets int Referring subnets pointing to the target. [optional]

Example

from unifapi.models.seo_backlinks_timeseries_item import SeoBacklinksTimeseriesItem

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

# convert the object into a dict
seo_backlinks_timeseries_item_dict = seo_backlinks_timeseries_item_instance.to_dict()
# create an instance of SeoBacklinksTimeseriesItem from a dict
seo_backlinks_timeseries_item_from_dict = SeoBacklinksTimeseriesItem.from_dict(seo_backlinks_timeseries_item_dict)

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