You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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
fromclientapi_cpanel.models.inline_response200225_result_dataimportInlineResponse200225ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200225ResultData from a JSON stringinline_response200225_result_data_instance=InlineResponse200225ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200225ResultData.to_json())
# convert the object into a dictinline_response200225_result_data_dict=inline_response200225_result_data_instance.to_dict()
# create an instance of InlineResponse200225ResultData from a dictinline_response200225_result_data_from_dict=InlineResponse200225ResultData.from_dict(inline_response200225_result_data_dict)