Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 2.68 KB

File metadata and controls

39 lines (30 loc) · 2.68 KB

InlineResponse200189ResultData

Properties

Name Type Description Notes
alwaysaccept int Whether the domain's highest-priority mail exchanger accepts local mail. * `1` - Accept local mail. * `0` - Does not accept local mail. [optional]
detected str The domain's highest-priority mail exchanger's type. * `auto` * `local` * `remote` * `secondary` [optional]
domain str The domain name. [optional]
entries List[InlineResponse200189ResultEntries] 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

from clientapi_cpanel.models.inline_response200189_result_data import InlineResponse200189ResultData

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

# convert the object into a dict
inline_response200189_result_data_dict = inline_response200189_result_data_instance.to_dict()
# create an instance of InlineResponse200189ResultData from a dict
inline_response200189_result_data_from_dict = InlineResponse200189ResultData.from_dict(inline_response200189_result_data_dict)

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