Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.19 KB

File metadata and controls

30 lines (21 loc) · 1.19 KB

SeoBacklinksBulkSpamScoreItem

Properties

Name Type Description Notes
target str Domain, subdomain, or page echoed from the request.
spam_score int Spam score of the target, 0-100. [optional]

Example

from unifapi.models.seo_backlinks_bulk_spam_score_item import SeoBacklinksBulkSpamScoreItem

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

# convert the object into a dict
seo_backlinks_bulk_spam_score_item_dict = seo_backlinks_bulk_spam_score_item_instance.to_dict()
# create an instance of SeoBacklinksBulkSpamScoreItem from a dict
seo_backlinks_bulk_spam_score_item_from_dict = SeoBacklinksBulkSpamScoreItem.from_dict(seo_backlinks_bulk_spam_score_item_dict)

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