Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.76 KB

InlineResponse200165ResultDataActions.md

File metadata and controls

31 lines (22 loc) · 1.76 KB

InlineResponse200165ResultDataActions

Properties

Name Type Description Notes
action str The filter's action. * `deliver` - The filter sends mail to the destination address. * `fail` - The filter forces a delivery failure. * `finish` - The filter stops message processing. * `save` - The filter saves mail to the destination file. * `pipe` - The filter sends mail to the destination application. [optional]
dest InlineResponse200165ResultDataActionsDest [optional]
number int The filter's position in the order of the account's filters. [optional]

Example

from clientapi_cpanel.models.inline_response200165_result_data_actions import InlineResponse200165ResultDataActions

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

# convert the object into a dict
inline_response200165_result_data_actions_dict = inline_response200165_result_data_actions_instance.to_dict()
# create an instance of InlineResponse200165ResultDataActions from a dict
inline_response200165_result_data_actions_from_dict = InlineResponse200165ResultDataActions.from_dict(inline_response200165_result_data_actions_dict)

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