| Name |
Type |
Description |
Notes |
| target |
str |
Target echoed from the request. |
|
| view |
SeoBacklinksView |
|
|
| mode |
str |
Result grouping applied to the backlinks. |
[optional] |
| total_count |
int |
Total number of backlinks available in DataForSEO's database. |
[optional] |
| search_after_token |
str |
Token to pass as search_after_token to fetch the next page of backlinks. |
[optional] |
| results |
List[SeoBacklinkItem] |
Individual backlinks pointing to the target. Each backlink is one billable record. |
|
from unifapi.models.seo_backlinks_list_response import SeoBacklinksListResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SeoBacklinksListResponse from a JSON string
seo_backlinks_list_response_instance = SeoBacklinksListResponse.from_json(json)
# print the JSON string representation of the object
print(SeoBacklinksListResponse.to_json())
# convert the object into a dict
seo_backlinks_list_response_dict = seo_backlinks_list_response_instance.to_dict()
# create an instance of SeoBacklinksListResponse from a dict
seo_backlinks_list_response_from_dict = SeoBacklinksListResponse.from_dict(seo_backlinks_list_response_dict)
[Back to Model list] [Back to API list] [Back to README]