Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.3 KB

File metadata and controls

30 lines (21 loc) · 1.3 KB

SeoBacklinksPageIntersectionTargetLinks

Properties

Name Type Description Notes
target str The requested target these backlinks point to.
links List[SeoBacklinkItem]

Example

from unifapi.models.seo_backlinks_page_intersection_target_links import SeoBacklinksPageIntersectionTargetLinks

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

# convert the object into a dict
seo_backlinks_page_intersection_target_links_dict = seo_backlinks_page_intersection_target_links_instance.to_dict()
# create an instance of SeoBacklinksPageIntersectionTargetLinks from a dict
seo_backlinks_page_intersection_target_links_from_dict = SeoBacklinksPageIntersectionTargetLinks.from_dict(seo_backlinks_page_intersection_target_links_dict)

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