Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.57 KB

File metadata and controls

32 lines (23 loc) · 1.57 KB

SeoBacklinksReferringNetworksResponse

Properties

Name Type Description Notes
target str Target echoed from the request.
view SeoBacklinksView
total_count int Total number of referring networks available in DataForSEO's database. [optional]
results List[SeoBacklinksReferringNetworkItem] Referring IP networks pointing to the target, with backlink counters. Each network is one billable record.

Example

from unifapi.models.seo_backlinks_referring_networks_response import SeoBacklinksReferringNetworksResponse

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

# convert the object into a dict
seo_backlinks_referring_networks_response_dict = seo_backlinks_referring_networks_response_instance.to_dict()
# create an instance of SeoBacklinksReferringNetworksResponse from a dict
seo_backlinks_referring_networks_response_from_dict = SeoBacklinksReferringNetworksResponse.from_dict(seo_backlinks_referring_networks_response_dict)

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