You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An array of strings containing mail exchanger (MX) information. Each string contains information for a single mail exchanger (MX), including: * The server's hostname. * The server's resolving IP address. * The MX record's priority. The lower the value, the higher its priority. * Whether DNSSEC is enabled for the hostname.
[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
fromclientapi_cpanel.models.trace_delivery_response_remote_delivery_destinationsimportTraceDeliveryResponseRemoteDeliveryDestinations# TODO update the JSON string belowjson="{}"# create an instance of TraceDeliveryResponseRemoteDeliveryDestinations from a JSON stringtrace_delivery_response_remote_delivery_destinations_instance=TraceDeliveryResponseRemoteDeliveryDestinations.from_json(json)
# print the JSON string representation of the objectprint(TraceDeliveryResponseRemoteDeliveryDestinations.to_json())
# convert the object into a dicttrace_delivery_response_remote_delivery_destinations_dict=trace_delivery_response_remote_delivery_destinations_instance.to_dict()
# create an instance of TraceDeliveryResponseRemoteDeliveryDestinations from a dicttrace_delivery_response_remote_delivery_destinations_from_dict=TraceDeliveryResponseRemoteDeliveryDestinations.from_dict(trace_delivery_response_remote_delivery_destinations_dict)