Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 3.19 KB

File metadata and controls

37 lines (28 loc) · 3.19 KB

InlineResponse200175ResultData

Properties

Name Type Description Notes
cpuser_spam_auto_delete int The cPanel user's account-wide spam filter setting * `1` - Enabled. * `0` - Not enabled. NOTE: This key only appears if the `account` parameter is passed and the account does not have a custom setting [optional]
cpuser_spam_auto_delete_score int The cPanel user's account-wide spam filter threshold score. For more information, see `Email::add_spam_filter`. NOTE: This key only appears if the `account` parameter is passed and the account does not have a custom setting [optional]
rewrites_subjects int Whether the user's spam filter rewrites the subject lines of spam messages. * `1` - Rewrite. * `0` - No rewrites. [optional]
spam_as_acl int Whether the user's spam filter uses Apache SpamAssassin as an ACL. NOTE: The value of this parameter is always `1` * `1` - SpamAssassin is an ACL. [optional]
spam_auto_delete int Whether the user's autodelete function is enabled. * `1` - Enabled. * `0` - Not enabled. NOTE:: This key does not appear if the `cpuser_spam_auto_delete` key appears [optional]
spam_auto_delete_score int Displays the user's spam filter threshold. For more information, see `Email::add_spam_filter`. Note: This key does not appear if the `cpuser_spam_auto_delete_score` key appears [optional]
spam_box_enabled int Whether the user's spam box is enabled. * `1` - Enabled. * `0` - Not enabled. [optional]
spam_enabled int Whether the server's global spam filtering is enabled. * `1` - Enabled. * `0` - Not enabled. Note: This value will only return `0` if the cPanel user disables Apache SpamAssassin. [optional]
spam_status_changeable int Whether the server allows cPanel users to configure Apache SpamAssassin settings. * `1` - Allowed. * `0` - Not allowed. [optional]

Example

from clientapi_cpanel.models.inline_response200175_result_data import InlineResponse200175ResultData

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

# convert the object into a dict
inline_response200175_result_data_dict = inline_response200175_result_data_instance.to_dict()
# create an instance of InlineResponse200175ResultData from a dict
inline_response200175_result_data_from_dict = InlineResponse200175ResultData.from_dict(inline_response200175_result_data_dict)

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