Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 2.57 KB

InlineResponse200165ResultDataRules.md

File metadata and controls

33 lines (24 loc) · 2.57 KB

InlineResponse200165ResultDataRules

Properties

Name Type Description Notes
match str 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

from clientapi_cpanel.models.inline_response200165_result_data_rules import InlineResponse200165ResultDataRules

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

# convert the object into a dict
inline_response200165_result_data_rules_dict = inline_response200165_result_data_rules_instance.to_dict()
# create an instance of InlineResponse200165ResultDataRules from a dict
inline_response200165_result_data_rules_from_dict = InlineResponse200165ResultDataRules.from_dict(inline_response200165_result_data_rules_dict)

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