Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.86 KB

InlineResponse20083ResultData.md

File metadata and controls

31 lines (22 loc) · 1.86 KB

InlineResponse20083ResultData

Properties

Name Type Description Notes
alias int Whether `ALIAS` records are available. * `1` - Available. * `0` - Not available. When `ALIAS` records are enabled, they may work in API calls that accept `A` and `AAAA` records. However, the `ALIAS` record must use a fully qualified domain name (FQDN) rather than an IP address. [optional]
aname int Whether `ANAME` records are available. * `1` - Available. * `0` - Not available. NOTE: The `aname` value is always set to false (i.e. Not available). The `ANAME` record is currently not supported. It is included for completeness and future proofing. [optional]
resolver str The value (if any) of the running PDNS’s `resolver` setting. [optional]

Example

from clientapi_cpanel.models.inline_response20083_result_data import InlineResponse20083ResultData

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

# convert the object into a dict
inline_response20083_result_data_dict = inline_response20083_result_data_instance.to_dict()
# create an instance of InlineResponse20083ResultData from a dict
inline_response20083_result_data_from_dict = InlineResponse20083ResultData.from_dict(inline_response20083_result_data_dict)

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