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 fully-qualified domain name (FQDN) that a PTR record points to.
[optional]
forward_records
List[str]
A list of IP addresses that the domain resolves to for A (IPv4) and AAAA (IPv6) records.
[optional]
state
str
The state of the domain's PTR record. * `VALID` - The PTR record is valid. * `MISSING_FWD` - The PTR points to a domain without an A or AAAA record. * `FWD_MISMATCH` - The PTR record points to a domain without an A or AAAA record that points back to the IP address.
[optional]
Example
fromclientapi_cpanel.models.inline_response200225_result_ptr_recordsimportInlineResponse200225ResultPtrRecords# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200225ResultPtrRecords from a JSON stringinline_response200225_result_ptr_records_instance=InlineResponse200225ResultPtrRecords.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200225ResultPtrRecords.to_json())
# convert the object into a dictinline_response200225_result_ptr_records_dict=inline_response200225_result_ptr_records_instance.to_dict()
# create an instance of InlineResponse200225ResultPtrRecords from a dictinline_response200225_result_ptr_records_from_dict=InlineResponse200225ResultPtrRecords.from_dict(inline_response200225_result_ptr_records_dict)