Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 2.32 KB

File metadata and controls

32 lines (23 loc) · 2.32 KB

InlineResponse200183ResultRules

Properties

Name Type Description Notes
match str The filter’s match type. [optional]
opt str 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

from clientapi_cpanel.models.inline_response200183_result_rules import InlineResponse200183ResultRules

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

# convert the object into a dict
inline_response200183_result_rules_dict = inline_response200183_result_rules_instance.to_dict()
# create an instance of InlineResponse200183ResultRules from a dict
inline_response200183_result_rules_from_dict = InlineResponse200183ResultRules.from_dict(inline_response200183_result_rules_dict)

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