Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.73 KB

InlineResponse200310ResultData.md

File metadata and controls

32 lines (23 loc) · 1.73 KB

InlineResponse200310ResultData

Properties

Name Type Description Notes
certificate_pem str The certificate's text. * `null` - The certificate is not available. * A certificate file in Base64 PEM format. [optional]
encrypted_action_urls InlineResponse200310ResultDataEncryptedActionUrls [optional]
status_code str The status code of the certificate. [optional]
status_message str An error message from the certificate provider. For example, why a certificate authority rejected an SSL certificate. Note: If no error message exists, this will return an empty string. [optional]

Example

from clientapi_cpanel.models.inline_response200310_result_data import InlineResponse200310ResultData

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

# convert the object into a dict
inline_response200310_result_data_dict = inline_response200310_result_data_instance.to_dict()
# create an instance of InlineResponse200310ResultData from a dict
inline_response200310_result_data_from_dict = InlineResponse200310ResultData.from_dict(inline_response200310_result_data_dict)

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