Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.69 KB

File metadata and controls

33 lines (24 loc) · 1.69 KB

InlineResponse200189ResultEntries

Properties

Name Type Description Notes
domain str The mail exchanger's domain. [optional]
entrycount int The mail exchanger's order in the list of priorities. For example, the mail exchanger with the highest priority returns `1`, and the next highest priority returns `2`. [optional]
mx str The mail exchanger's name. [optional]
priority int The mail exchanger's priority value. [optional]
row str Whether the mail exchanger is an odd or an even entry. * `even` * `odd` [optional]

Example

from clientapi_cpanel.models.inline_response200189_result_entries import InlineResponse200189ResultEntries

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

# convert the object into a dict
inline_response200189_result_entries_dict = inline_response200189_result_entries_instance.to_dict()
# create an instance of InlineResponse200189ResultEntries from a dict
inline_response200189_result_entries_from_dict = InlineResponse200189ResultEntries.from_dict(inline_response200189_result_entries_dict)

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