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 filter's match type. * `is` * `matches` * `contains` * `does not contain` * `begins` * `does not begin` * `ends` * `does not end` * `does not match` * `is above` * `is not above` * `is below` * `is not below`
[optional]
number
int
The filter's position in the order of the account's filters.
[optional]
opt
str
The connection between multiple conditions. * `and` - Match both conditions. * `or` - Match either condition. * `null` - There is only one condition.
[optional]
part
str
The queried email section. * `$header_from:` - Matches against the From: section. * `$header_subject:` - Matches against the Subject: section. * `$header_to:` - Matches against the To: section. * `$reply_address:` - Matches against the Reply To: section. * `$message_body` - Matches against the message's body. * `$message_headers` - Matches against the message's headers. * `foranyaddress $h_to:,$h_cc:,$h_bcc:` - Matches against all message recipients. * `not delivered` - Matches if the message is not queued for delivery. * `error_message` - Matches if the incoming message bounced.
[optional]
val
str
The matched value.
[optional]
Example
fromclientapi_cpanel.models.inline_response200165_result_data_rulesimportInlineResponse200165ResultDataRules# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200165ResultDataRules from a JSON stringinline_response200165_result_data_rules_instance=InlineResponse200165ResultDataRules.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200165ResultDataRules.to_json())
# convert the object into a dictinline_response200165_result_data_rules_dict=inline_response200165_result_data_rules_instance.to_dict()
# create an instance of InlineResponse200165ResultDataRules from a dictinline_response200165_result_data_rules_from_dict=InlineResponse200165ResultDataRules.from_dict(inline_response200165_result_data_rules_dict)