Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.68 KB

File metadata and controls

31 lines (22 loc) · 1.68 KB

InlineResponse200305ResultDataDomainDetails

An object that contains information about the domain.

Properties

Name Type Description Notes
domain str The Fully Qualified Domain Name (FQDN) that the function queries. [optional]
status str The status of the domain's certificate. * `VALIDATED` - The domain has been validated. * `NOTVALIDATED` - The domain has not been validated. * `AWAITINGBRAND` - The domain has not been validated, and is awaiting brand approval. [optional]

Example

from clientapi_cpanel.models.inline_response200305_result_data_domain_details import InlineResponse200305ResultDataDomainDetails

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

# convert the object into a dict
inline_response200305_result_data_domain_details_dict = inline_response200305_result_data_domain_details_instance.to_dict()
# create an instance of InlineResponse200305ResultDataDomainDetails from a dict
inline_response200305_result_data_domain_details_from_dict = InlineResponse200305ResultDataDomainDetails.from_dict(inline_response200305_result_data_domain_details_dict)

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