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 connection between multiple conditions. * `and` — Match both conditions. * `or` — Match either condition. * `null` — Only one condition exists.
[optional]
part
str
The queried email section. Some common ones include: * `$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 system has not queued the message for delivery. * `error_message` — Matches if the incoming message bounced. For more options, read Exim’s documentation.
[optional]
val
str
The matched value. A string value.
[optional]
Example
fromclientapi_cpanel.models.inline_response200183_result_rulesimportInlineResponse200183ResultRules# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200183ResultRules from a JSON stringinline_response200183_result_rules_instance=InlineResponse200183ResultRules.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200183ResultRules.to_json())
# convert the object into a dictinline_response200183_result_rules_dict=inline_response200183_result_rules_instance.to_dict()
# create an instance of InlineResponse200183ResultRules from a dictinline_response200183_result_rules_from_dict=InlineResponse200183ResultRules.from_dict(inline_response200183_result_rules_dict)