| Name | Type | Description | Notes |
|---|---|---|---|
| results | List[SeoBacklinksBulkRankItem] | Backlink rank for each requested target. Each target is one billable record. |
from unifapi.models.seo_backlinks_bulk_ranks_response import SeoBacklinksBulkRanksResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SeoBacklinksBulkRanksResponse from a JSON string
seo_backlinks_bulk_ranks_response_instance = SeoBacklinksBulkRanksResponse.from_json(json)
# print the JSON string representation of the object
print(SeoBacklinksBulkRanksResponse.to_json())
# convert the object into a dict
seo_backlinks_bulk_ranks_response_dict = seo_backlinks_bulk_ranks_response_instance.to_dict()
# create an instance of SeoBacklinksBulkRanksResponse from a dict
seo_backlinks_bulk_ranks_response_from_dict = SeoBacklinksBulkRanksResponse.from_dict(seo_backlinks_bulk_ranks_response_dict)