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
The system failed to whitelist the message. * `1` — The function failed to whitelist the message. This is the only possible value. Note: The function only returns this property if it failed to whitelist the message.
[optional] [default to '1']
matches
List[str]
An array of message files that the system whitelisted. Note: The function only returns this value if it whitelists the message.
[optional]
operator
str
The action that the system performed.
[optional] [default to 'whitelist']
reason
str
The reason the function skipped the message during whitelisting. The `reason` property is returned only if the function failed to whitelist the message.
[optional]
warning
int
Whether the system experienced issues when it whitelisted the message. * `1` — There was an issue whitelisting the message. This is the only possible value. Note: The function only returns this property if it failed to whitelist the message.
[optional] [default to 1]
Example
fromclientapi_cpanel.models.inline_response20041_result_dataimportInlineResponse20041ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse20041ResultData from a JSON stringinline_response20041_result_data_instance=InlineResponse20041ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse20041ResultData.to_json())
# convert the object into a dictinline_response20041_result_data_dict=inline_response20041_result_data_instance.to_dict()
# create an instance of InlineResponse20041ResultData from a dictinline_response20041_result_data_from_dict=InlineResponse20041ResultData.from_dict(inline_response20041_result_data_dict)