You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An array containing custom SpamAssassin variable values. Note: The array's name is the custom SpamAssassin variable's name.
[optional]
blacklist_from
List[str]
An array of email addresses on the blacklist.
[optional]
required_score
List[float]
An array containing the score at which the system will mark a message as spam. The system considers mail that matches this score to be spam.
[optional]
score
List[str]
An array of the symbolic test names and their scores.
[optional]
whitelist_from
List[str]
An array of the email addresses on the whitelist.
[optional]
Example
fromclientapi_cpanel.models.inline_response200487_result_dataimportInlineResponse200487ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200487ResultData from a JSON stringinline_response200487_result_data_instance=InlineResponse200487ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200487ResultData.to_json())
# convert the object into a dictinline_response200487_result_data_dict=inline_response200487_result_data_instance.to_dict()
# create an instance of InlineResponse200487ResultData from a dictinline_response200487_result_data_from_dict=InlineResponse200487ResultData.from_dict(inline_response200487_result_data_dict)