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 email address for which the system processed an email message.
[optional]
failed
int
Whether the system failed to process the message. * `1` - The function failed to process the message. This is the only possible value. Note: The function only returns this value if it fails to process the message.
[optional]
matches
List[str]
An array of email messages that the system processed.
[optional]
operator
str
The operation that the system performed. * `deliver` - Delivered a specific message. * `deliverall` - Delivered all messages from a sender. * `delete` - Deleted a message. * `deleteall` - Deleted all messages from a sender. * `blacklist` - Blacklisted the sender of an email message. * `whitelist` - Whitelisted the sender of an email message. * `ignore` - Ignored email messages from a sender. Note: The function only returns this value if it successfully processes the message.
[optional]
reason
str
A message about the failure or the warning. Note: The function only returns this value if it fails to processes the message or experiences issues when it processes the message.
[optional]
Example
fromclientapi_cpanel.models.inline_response20032_result_dataimportInlineResponse20032ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse20032ResultData from a JSON stringinline_response20032_result_data_instance=InlineResponse20032ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse20032ResultData.to_json())
# convert the object into a dictinline_response20032_result_data_dict=inline_response20032_result_data_instance.to_dict()
# create an instance of InlineResponse20032ResultData from a dictinline_response20032_result_data_from_dict=InlineResponse20032ResultData.from_dict(inline_response20032_result_data_dict)