Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.32 KB

File metadata and controls

35 lines (26 loc) · 1.32 KB

InboundRoute

Properties

Name Type Description Notes
public_id str [optional]
name str Name of this route [optional]
filter_type InboundRouteFilterType [optional]
filter str Filter of the inbound data [optional]
action_type InboundRouteActionType [optional]
action_parameter str URL address or Email to notify about the inbound [optional]
sort_order int Place of this route in your routes queue's order [optional]

Example

from ElasticEmail.models.inbound_route import InboundRoute

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

# convert the object into a dict
inbound_route_dict = inbound_route_instance.to_dict()
# create an instance of InboundRoute from a dict
inbound_route_from_dict = InboundRoute.from_dict(inbound_route_dict)

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