Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 2.74 KB

File metadata and controls

37 lines (28 loc) · 2.74 KB

InlineResponse200198ResultData

Properties

Name Type Description Notes
checkmx InlineResponse200198ResultDataCheckmx [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]
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]
results str A message of success or a reason for failure. * A message of success that includes the new type. * A string that describes an error. [optional]
secondary int Whether the mail exchanger is a secondary exchanger. * `1` — Secondary. * `0` — Not secondary. [optional]
status int Whether the function succeeded. * `1` — Success. * `0` — Failure. [optional]
statusmsg str A message of success or a reason for failure. * A message of success that includes the new type. * A string that describes an error. [optional]

Example

from clientapi_cpanel.models.inline_response200198_result_data import InlineResponse200198ResultData

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

# convert the object into a dict
inline_response200198_result_data_dict = inline_response200198_result_data_instance.to_dict()
# create an instance of InlineResponse200198ResultData from a dict
inline_response200198_result_data_from_dict = InlineResponse200198ResultData.from_dict(inline_response200198_result_data_dict)

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