Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 3.43 KB

InlineResponse200415ResultData.md

File metadata and controls

47 lines (38 loc) · 3.43 KB

InlineResponse200415ResultData

Properties

Name Type Description Notes
created int The date the certificate was created. [optional]
domains List[str] A list of the domains that the certificate 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 ID. [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 name. [optional]
issuer_text str The certificate's issuer information. [optional]
key_algorithm str The certificate's key's algorithm. * `rsaEncryption` — RSA. * `id-ecPublicKey` — ECDSA. [optional]
modulus str The certificate's key's modulus, in hexadecimal format. * `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 The date the certificate expired. [optional]
not_before int The date the certificate started. [optional]
signature_algorithm str The certificate's signature OID hash algorithm. [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 Validation. * `dv` — Domain Validation. * `null` — The system could not parse and determine the certificate's validation type. [optional]

Example

from clientapi_cpanel.models.inline_response200415_result_data import InlineResponse200415ResultData

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

# convert the object into a dict
inline_response200415_result_data_dict = inline_response200415_result_data_instance.to_dict()
# create an instance of InlineResponse200415ResultData from a dict
inline_response200415_result_data_from_dict = InlineResponse200415ResultData.from_dict(inline_response200415_result_data_dict)

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