Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.53 KB

File metadata and controls

34 lines (25 loc) · 1.53 KB

SeoBacklinksListResponse

Properties

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.

Example

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]