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
Backlinks from this referring page to each requested target it links to, one entry per target.
Example
fromunifapi.models.seo_backlinks_page_intersection_itemimportSeoBacklinksPageIntersectionItem# TODO update the JSON string belowjson="{}"# create an instance of SeoBacklinksPageIntersectionItem from a JSON stringseo_backlinks_page_intersection_item_instance=SeoBacklinksPageIntersectionItem.from_json(json)
# print the JSON string representation of the objectprint(SeoBacklinksPageIntersectionItem.to_json())
# convert the object into a dictseo_backlinks_page_intersection_item_dict=seo_backlinks_page_intersection_item_instance.to_dict()
# create an instance of SeoBacklinksPageIntersectionItem from a dictseo_backlinks_page_intersection_item_from_dict=SeoBacklinksPageIntersectionItem.from_dict(seo_backlinks_page_intersection_item_dict)