An object of 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` * `local` * `secondary` * `remote` | [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` * `local` * `secondary` * `remote` | [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] | Warning messages, if any exist. | [optional] |
from clientapi_cpanel.models.inline_response200125_result_data_checkmx import InlineResponse200125ResultDataCheckmx
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200125ResultDataCheckmx from a JSON string
inline_response200125_result_data_checkmx_instance = InlineResponse200125ResultDataCheckmx.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200125ResultDataCheckmx.to_json())
# convert the object into a dict
inline_response200125_result_data_checkmx_dict = inline_response200125_result_data_checkmx_instance.to_dict()
# create an instance of InlineResponse200125ResultDataCheckmx from a dict
inline_response200125_result_data_checkmx_from_dict = InlineResponse200125ResultDataCheckmx.from_dict(inline_response200125_result_data_checkmx_dict)