Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.7 KB

File metadata and controls

31 lines (22 loc) · 1.7 KB

InlineResponse200225ResultPtrRecords

Properties

Name Type Description Notes
domain str 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

from clientapi_cpanel.models.inline_response200225_result_ptr_records import InlineResponse200225ResultPtrRecords

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

# convert the object into a dict
inline_response200225_result_ptr_records_dict = inline_response200225_result_ptr_records_instance.to_dict()
# create an instance of InlineResponse200225ResultPtrRecords from a dict
inline_response200225_result_ptr_records_from_dict = InlineResponse200225ResultPtrRecords.from_dict(inline_response200225_result_ptr_records_dict)

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