| Name |
Type |
Description |
Notes |
| target |
str |
Domain, subdomain, or page echoed from the request. |
|
| rank |
int |
Backlink rank of the target (0-1000 by default), similar to PageRank. |
[optional] |
from unifapi.models.seo_backlinks_bulk_rank_item import SeoBacklinksBulkRankItem
# TODO update the JSON string below
json = "{}"
# create an instance of SeoBacklinksBulkRankItem from a JSON string
seo_backlinks_bulk_rank_item_instance = SeoBacklinksBulkRankItem.from_json(json)
# print the JSON string representation of the object
print(SeoBacklinksBulkRankItem.to_json())
# convert the object into a dict
seo_backlinks_bulk_rank_item_dict = seo_backlinks_bulk_rank_item_instance.to_dict()
# create an instance of SeoBacklinksBulkRankItem from a dict
seo_backlinks_bulk_rank_item_from_dict = SeoBacklinksBulkRankItem.from_dict(seo_backlinks_bulk_rank_item_dict)
[Back to Model list] [Back to API list] [Back to README]