Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 2 KB

InlineResponse20019ResultData.md

File metadata and controls

34 lines (25 loc) · 2 KB

InlineResponse20019ResultData

Properties

Name Type Description Notes
email str The delivered email message's sender. [optional]
failed int Whether the system could not deliver the message. Note: * The function only returns this value if it doesn't deliver the message. * `1` is the only possible value. [optional]
matches List[str] A list of delivered email messages. [optional]
operator str The action that the function performed. * `deliver` * `deliverall` [optional]
reason str A message about the failure or the warning. Note: The function only returns this value if it doesn't delete the message or experiences issues when it deletes the message. [optional]
warning int Whether the system experienced issues when it delivered the message. Note: * The function only returns this value if it experiences issues when it delivers the message. * `1` is the only possible value. [optional]

Example

from clientapi_cpanel.models.inline_response20019_result_data import InlineResponse20019ResultData

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

# convert the object into a dict
inline_response20019_result_data_dict = inline_response20019_result_data_instance.to_dict()
# create an instance of InlineResponse20019ResultData from a dict
inline_response20019_result_data_from_dict = InlineResponse20019ResultData.from_dict(inline_response20019_result_data_dict)

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