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
Whether the system failed to delete the messages. Note: The function only returns this value if it doesn't delete the message.
[optional]
matches
List[str]
An array of messages that the system deleted.
[optional]
operator
str
The operation that the system performed.
[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 deleted the message. Note: The function only returns this value if it experiences issues when it deletes the message.
[optional]
Example
fromclientapi_cpanel.models.inline_response20018_result_dataimportInlineResponse20018ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse20018ResultData from a JSON stringinline_response20018_result_data_instance=InlineResponse20018ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse20018ResultData.to_json())
# convert the object into a dictinline_response20018_result_data_dict=inline_response20018_result_data_instance.to_dict()
# create an instance of InlineResponse20018ResultData from a dictinline_response20018_result_data_from_dict=InlineResponse20018ResultData.from_dict(inline_response20018_result_data_dict)