An object containing the mail exchanger's data.
Name | Type | Description | Notes |
---|---|---|---|
changed | int | Whether a change occurred during the function. * `1` — Change occurred. * `0` — No change. | [optional] |
detected | str | The mail exchanger type. * `auto` — Allow cPanel to determine the appropriate role. * `local` — Always accept the domain's mail. * `secondary` — Accept mail until a higher priority mail server is available. * `remote` — Do not accept mail. | [optional] |
isprimary | int | Whether the mail exchanger is the primary mail exchanger. * `1` — Primary. * `0` — Not primary. | [optional] |
issecondary | int | Whether the mail exchanger is a secondary exchanger. * `1` — Secondary. * `0` — Not secondary. | [optional] |
local | int | Whether the mail exchanger is a local exchanger. * `1` — Local. * `0` — Not local. | [optional] |
mxcheck | str | The mail exchanger type. * `auto` — Allow cPanel to determine the appropriate role. * `local` — Always accept the domain's mail. * `secondary` — Accept mail until a higher priority mail server is available. * `remote` — Do not accept mail. | [optional] |
remote | int | Whether the mail exchanger is a remote exchanger. * `1` — Remote. * `0` — Not remote. | [optional] |
secondary | int | Whether the mail exchanger is a secondary exchanger. * `1` — Secondary. * `0` — Not secondary. | [optional] |
warnings | List[str] | An array of warning messages, if any exist. One or more warning messages. | [optional] |
from clientapi_cpanel.models.inline_response200198_result_data_checkmx import InlineResponse200198ResultDataCheckmx
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200198ResultDataCheckmx from a JSON string
inline_response200198_result_data_checkmx_instance = InlineResponse200198ResultDataCheckmx.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200198ResultDataCheckmx.to_json())
# convert the object into a dict
inline_response200198_result_data_checkmx_dict = inline_response200198_result_data_checkmx_instance.to_dict()
# create an instance of InlineResponse200198ResultDataCheckmx from a dict
inline_response200198_result_data_checkmx_from_dict = InlineResponse200198ResultDataCheckmx.from_dict(inline_response200198_result_data_checkmx_dict)