Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.57 KB

InlineResponse20079ResultData.md

File metadata and controls

31 lines (22 loc) · 1.57 KB

InlineResponse20079ResultData

Properties

Name Type Description Notes
failure_reason str The reason that the DCV check failed. * `null` — The domain passed the DCV check. [optional]
redirects List[InlineResponse20079ResultRedirects] An array of objects that contains DCV check redirect information. Note: This only contains data if the `redirects_count` return includes a value greater than zero. [optional]
redirects_count int The number of HTTP redirects that the DCV check follows. [optional]

Example

from clientapi_cpanel.models.inline_response20079_result_data import InlineResponse20079ResultData

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

# convert the object into a dict
inline_response20079_result_data_dict = inline_response20079_result_data_instance.to_dict()
# create an instance of InlineResponse20079ResultData from a dict
inline_response20079_result_data_from_dict = InlineResponse20079ResultData.from_dict(inline_response20079_result_data_dict)

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