| Name | Type | Description | Notes |
|---|---|---|---|
| results | List[SeoBacklinksBulkSpamScoreItem] | Spam score for each requested target. Each target is one billable record. |
from unifapi.models.seo_backlinks_bulk_spam_score_response import SeoBacklinksBulkSpamScoreResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SeoBacklinksBulkSpamScoreResponse from a JSON string
seo_backlinks_bulk_spam_score_response_instance = SeoBacklinksBulkSpamScoreResponse.from_json(json)
# print the JSON string representation of the object
print(SeoBacklinksBulkSpamScoreResponse.to_json())
# convert the object into a dict
seo_backlinks_bulk_spam_score_response_dict = seo_backlinks_bulk_spam_score_response_instance.to_dict()
# create an instance of SeoBacklinksBulkSpamScoreResponse from a dict
seo_backlinks_bulk_spam_score_response_from_dict = SeoBacklinksBulkSpamScoreResponse.from_dict(seo_backlinks_bulk_spam_score_response_dict)