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 objects that contains information about mail exchangers.
[optional]
local
int
Whether the domain's highest priority mail exchanger is a local mail exchanger. * `1` - Local. * `0` - Not local.
[optional]
mx
str
The domain's highest-priority mail exchanger's name.
[optional]
mxcheck
str
The domain's highest-priority mail exchanger's type. * `auto` * `local` * `remote` * `secondary`
[optional]
remote
int
Whether the domain's highest-priority mail exchanger is remote. * `1` - Remote. * `0` - Not remote.
[optional]
secondary
int
Whether the domain's highest-priority mail exchanger is secondary. * `1` - Secondary. * `0` - Not secondary.
[optional]
status
int
Whether the function succeeded. * `1` - Success. * `0` - Failure.
[optional]
statusmsg
str
A success or error message message. * A success message. * An error message.
[optional]
Example
fromclientapi_cpanel.models.inline_response200189_result_dataimportInlineResponse200189ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200189ResultData from a JSON stringinline_response200189_result_data_instance=InlineResponse200189ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200189ResultData.to_json())
# convert the object into a dictinline_response200189_result_data_dict=inline_response200189_result_data_instance.to_dict()
# create an instance of InlineResponse200189ResultData from a dictinline_response200189_result_data_from_dict=InlineResponse200189ResultData.from_dict(inline_response200189_result_data_dict)