Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.92 KB

InlineResponse200414ResultData.md

File metadata and controls

39 lines (30 loc) · 1.92 KB

InlineResponse200414ResultData

Properties

Name Type Description Notes
cab str The CA bundle's contents (if applicable). [optional]
crt str The certificate's contents. [optional]
crt_origin str The username that generated the certificate. [optional]
domain str The domain that generated the private key. [optional]
ip str The IP address. [optional]
key str The private key. [optional]
key_origin str The username that generated the private key. [optional]
searched_users List[str] The users that the system searched for certificate information. [optional]
status int Whether the certificate is active. * `1` - Active. * `0` - Inactive. [optional]
statusmsg str The certificate's status. [optional]
user str The username that stores the private key. [optional]

Example

from clientapi_cpanel.models.inline_response200414_result_data import InlineResponse200414ResultData

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

# convert the object into a dict
inline_response200414_result_data_dict = inline_response200414_result_data_instance.to_dict()
# create an instance of InlineResponse200414ResultData from a dict
inline_response200414_result_data_from_dict = InlineResponse200414ResultData.from_dict(inline_response200414_result_data_dict)

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