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
Competing domain that shares part of the target's backlink profile.
rank
int
Backlink rank of the competing domain (0-1000 by default).
[optional]
intersections
int
Number of referring domains the competitor shares with the target.
[optional]
Example
fromunifapi.models.seo_backlinks_competitor_itemimportSeoBacklinksCompetitorItem# TODO update the JSON string belowjson="{}"# create an instance of SeoBacklinksCompetitorItem from a JSON stringseo_backlinks_competitor_item_instance=SeoBacklinksCompetitorItem.from_json(json)
# print the JSON string representation of the objectprint(SeoBacklinksCompetitorItem.to_json())
# convert the object into a dictseo_backlinks_competitor_item_dict=seo_backlinks_competitor_item_instance.to_dict()
# create an instance of SeoBacklinksCompetitorItem from a dictseo_backlinks_competitor_item_from_dict=SeoBacklinksCompetitorItem.from_dict(seo_backlinks_competitor_item_dict)