Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 3.43 KB

File metadata and controls

37 lines (28 loc) · 3.43 KB

InlineResponse200225ResultData

Properties

Name Type Description Notes
arpa_domain str The IP address used to perform a reverse DNS (rDNS) lookup. For more information about rDNS, read our How to Configure Reverse DNS for BIND in WHM documentation. A valid reversed IP address appended with one of the following: * in-addr.arpa - An IPv4 address. * ip6.arpa - An IPv6 address. For information about .arpa domains, read Wikipedia's Reverse DNS lookup article. Note: The function does not return this value for a domain with an invalid IP address. [optional]
domain str The queried domain. [optional]
error str A mmessage that details the reason why the domain's IP address validation failed. Note: The function only returns this value when the `state` returned is the `ERROR` value. [optional]
helo str The hostname that the domain uses to identify itself to remote SMTP servers. A valid hostname. [optional]
ip_address str The IP address. Note: The function does not return this value for a domain with an invalid IP address. [optional]
ip_version int The IP version number. * 4 * 6 Note: The function does not return this value for a domain with an invalid IP address. [optional]
nameservers List[str] The authoritative nameservers for the domain's PTR record. [optional]
ptr_records List[InlineResponse200225ResultPtrRecords] The domain's PTR records. Note: The function does not return this for a domain with an invalid IP address. [optional]
state str Whether the PTR records are valid for the domain. * `ERROR` - The domain's IP address is invalid. The function returns the reason in the error return. * `IP_IS_PRIVATE` - The IP address exists within a range of private IP addresses. * `VALID` - The PTR record is valid. * `MISSING_PTR` - No PTR records exist for the IP address. * `PTR_MISMATCH` - One or more PTR records point to a domain that does not point back to the correct IP address. Note: * DNS does not define PTR records for private IP addresses. * The function only returns a VALID response if all of an IP address's PTR records are valid. [optional]

Example

from clientapi_cpanel.models.inline_response200225_result_data import InlineResponse200225ResultData

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

# convert the object into a dict
inline_response200225_result_data_dict = inline_response200225_result_data_instance.to_dict()
# create an instance of InlineResponse200225ResultData from a dict
inline_response200225_result_data_from_dict = InlineResponse200225ResultData.from_dict(inline_response200225_result_data_dict)

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