Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.54 KB

File metadata and controls

32 lines (23 loc) · 1.54 KB

SeoBacklinksPageIntersectionItem

Properties

Name Type Description Notes
url_from str URL of the referring page that links to the targets. [optional]
domain_from str Domain of the referring page. [optional]
intersections_count int Number of the requested targets this page links to. [optional]
links_to List[SeoBacklinksPageIntersectionTargetLinks] Backlinks from this referring page to each requested target it links to, one entry per target.

Example

from unifapi.models.seo_backlinks_page_intersection_item import SeoBacklinksPageIntersectionItem

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

# convert the object into a dict
seo_backlinks_page_intersection_item_dict = seo_backlinks_page_intersection_item_instance.to_dict()
# create an instance of SeoBacklinksPageIntersectionItem from a dict
seo_backlinks_page_intersection_item_from_dict = SeoBacklinksPageIntersectionItem.from_dict(seo_backlinks_page_intersection_item_dict)

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