Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 2.29 KB

InlineResponse20032ResultData.md

File metadata and controls

33 lines (24 loc) · 2.29 KB

InlineResponse20032ResultData

Properties

Name Type Description Notes
email str 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

from clientapi_cpanel.models.inline_response20032_result_data import InlineResponse20032ResultData

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

# convert the object into a dict
inline_response20032_result_data_dict = inline_response20032_result_data_instance.to_dict()
# create an instance of InlineResponse20032ResultData from a dict
inline_response20032_result_data_from_dict = InlineResponse20032ResultData.from_dict(inline_response20032_result_data_dict)

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