| Name | Type | Description | Notes |
|---|---|---|---|
| target | str | Target echoed from the request. | |
| view | SeoBacklinksView | ||
| total_count | int | Total number of anchor texts available in DataForSEO's database. | [optional] |
| results | List[SeoBacklinksAnchorItem] | Anchor texts used in backlinks to the target, with backlink counters. Each anchor is one billable record. |
from unifapi.models.seo_backlinks_anchors_response import SeoBacklinksAnchorsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SeoBacklinksAnchorsResponse from a JSON string
seo_backlinks_anchors_response_instance = SeoBacklinksAnchorsResponse.from_json(json)
# print the JSON string representation of the object
print(SeoBacklinksAnchorsResponse.to_json())
# convert the object into a dict
seo_backlinks_anchors_response_dict = seo_backlinks_anchors_response_instance.to_dict()
# create an instance of SeoBacklinksAnchorsResponse from a dict
seo_backlinks_anchors_response_from_dict = SeoBacklinksAnchorsResponse.from_dict(seo_backlinks_anchors_response_dict)