Skip to content

Latest commit

 

History

History
53 lines (44 loc) · 3.97 KB

InlineResponse200413ResultData.md

File metadata and controls

53 lines (44 loc) · 3.97 KB

InlineResponse200413ResultData

Properties

Name Type Description Notes
cab str The CA bundle's contents. [optional]
created int When the certificate was created. [optional]
crt str The certificate's contents in Base64 PEM format. [optional]
domain_is_configured int Whether the certificate is installed on the account. * `1` — Installed. * `0` — Not installed. [optional]
domains List[str] The domains that the CSR covers. [optional]
ecdsa_curve_name str The ECDSA curve that the certificate's key uses. * `prime256v1` * `secp384r1` * `null` — The certificate's key is not an ECDSA key. [optional]
ecdsa_public str The certificate's key's ECDSA compressed public point, in hexadecimal format. * `null` — The certificate's key is not an ECDSA key. [optional]
friendly_name str The certificate's friendly name. [optional]
id str The certificate's identification. [optional]
is_self_signed int Whether the certificate is self-signed. - `1` — Self-signed. - `0` — Not self-signed. [optional]
issuer_common_name str The name that issued the certificate. [optional]
issuer_organization_name str The certificate's organization. [optional]
issuer_text str The certificate's issuer information. [optional]
key str The private key in Base64 PEM format. [optional]
key_algorithm str The certificate's key's algorithm. * `rsaEncryption` — RSA. * `id-ecPublicKey` — ECDSA. [optional]
modulus str The length, in bits, of the certificate's key's modulus. * `null` — The certificate's key is not an RSA key. [optional]
modulus_length int The length, in bits, of the certificate's key's modulus. * `null` — The certificate's key is not an RSA key. [optional]
not_after int When the certificate expired. [optional]
not_before int When the certificate started. [optional]
serial str The certificate's serial number. [optional]
signature_algorithm str The OID of the hash algorithm used to sign the certificate request. [optional]
subject_common_name str The certificate's common name. [optional]
subject_text str The certificate's subject text information. [optional]
validation_type str The certificate's validation type. * `ev` — Extended Validation. * `ov` — Organization Validated. * `dv` — Domain Validated. * `null` — The system could not parse and determine the certificate's validation type. [optional]
verify_error str A message that explains the reason for a verification error. [optional]

Example

from clientapi_cpanel.models.inline_response200413_result_data import InlineResponse200413ResultData

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

# convert the object into a dict
inline_response200413_result_data_dict = inline_response200413_result_data_instance.to_dict()
# create an instance of InlineResponse200413ResultData from a dict
inline_response200413_result_data_from_dict = InlineResponse200413ResultData.from_dict(inline_response200413_result_data_dict)

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