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
A message that contains the reason why the DCV check failed. Note: If the server fails to update the DNS zone, the system returns this value.
[optional]
query_results
List[str]
The strings that the DNS query returned. This array may be empty. Note: If the server fails to update the DNS zone, the system returns the `failure_reason` value.
[optional]
succeeded
int
Whether the DCV check succeeded. - `1` - At least one of the `query_results` values equals the `dcv_string` value. - `0` - None of the `query_results` values equal the `dcv_string` value.
[optional]
zone
str
The altered and queried DNS zone name.
[optional]
Example
fromclientapi_cpanel.models.inline_response20078_result_dataimportInlineResponse20078ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse20078ResultData from a JSON stringinline_response20078_result_data_instance=InlineResponse20078ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse20078ResultData.to_json())
# convert the object into a dictinline_response20078_result_data_dict=inline_response20078_result_data_instance.to_dict()
# create an instance of InlineResponse20078ResultData from a dictinline_response20078_result_data_from_dict=InlineResponse20078ResultData.from_dict(inline_response20078_result_data_dict)