Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.42 KB

File metadata and controls

31 lines (22 loc) · 1.42 KB

SeoBacklinksCompetitorsResponse

Properties

Name Type Description Notes
target str Target echoed from the request.
total_count int Total number of competitors available in DataForSEO's database. [optional]
results List[SeoBacklinksCompetitorItem] Domains that share referring domains with the target, by shared-domain count. Each competitor is one billable record.

Example

from unifapi.models.seo_backlinks_competitors_response import SeoBacklinksCompetitorsResponse

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

# convert the object into a dict
seo_backlinks_competitors_response_dict = seo_backlinks_competitors_response_instance.to_dict()
# create an instance of SeoBacklinksCompetitorsResponse from a dict
seo_backlinks_competitors_response_from_dict = SeoBacklinksCompetitorsResponse.from_dict(seo_backlinks_competitors_response_dict)

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