Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 2.33 KB

TraceDeliveryResponseDiscardDestinations.md

File metadata and controls

30 lines (21 loc) · 2.33 KB

TraceDeliveryResponseDiscardDestinations

Properties

Name Type Description Notes
aliasfile str The file path on the system where Exim searched for the `address` return value's aliases. Note: The function only returns this value if an alias exists for the `address` value. [optional]
type str A type of trace node. The system returns this value to indicate the end of routing. * `bounce` - The system rejected the email's delivery. * `command` - The system will run a command when it receives an email. * `defer` - The system deferred the email. * `discard` - The system discarded the email. * `error` - The system encountered an error. * `local_delivery` - The system sent the email to a local mailbox. * `remote_delivery` - The system sent the email via Simple Mail Transfer Protocol (SMTP). * `routed` - The system routed the email elsewhere. Note: * The structure of the `destinations` return changes depending on the `type` return value. * The `routed` type can return any other type's data structure as part of the `destinations` return value. [optional]

Example

from clientapi_cpanel.models.trace_delivery_response_discard_destinations import TraceDeliveryResponseDiscardDestinations

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

# convert the object into a dict
trace_delivery_response_discard_destinations_dict = trace_delivery_response_discard_destinations_instance.to_dict()
# create an instance of TraceDeliveryResponseDiscardDestinations from a dict
trace_delivery_response_discard_destinations_from_dict = TraceDeliveryResponseDiscardDestinations.from_dict(trace_delivery_response_discard_destinations_dict)

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