Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.25 KB

File metadata and controls

29 lines (20 loc) · 1.25 KB

SeoBacklinksBulkBacklinksResponse

Properties

Name Type Description Notes
results List[SeoBacklinksBulkBacklinkItem] Backlink count for each requested target. Each target is one billable record.

Example

from unifapi.models.seo_backlinks_bulk_backlinks_response import SeoBacklinksBulkBacklinksResponse

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

# convert the object into a dict
seo_backlinks_bulk_backlinks_response_dict = seo_backlinks_bulk_backlinks_response_instance.to_dict()
# create an instance of SeoBacklinksBulkBacklinksResponse from a dict
seo_backlinks_bulk_backlinks_response_from_dict = SeoBacklinksBulkBacklinksResponse.from_dict(seo_backlinks_bulk_backlinks_response_dict)

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