Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 2.08 KB

File metadata and controls

37 lines (28 loc) · 2.08 KB

InlineResponse200406ResultData

Properties

Name Type Description Notes
common_name str The CSR's Common Name. [optional]
created int The CSR's creation date. [optional]
domains List[str] A list of the domains that the CSR covers. [optional]
ecdsa_curve_name str The ECDSA curve that the CSR's key uses. * `prime256v1` * `secp384r1` * `null` — The CSR's key is not an ECDSA key. [optional]
ecdsa_public str The CSR's key's ECDSA compressed public point, in hexadecimal format. * `null` — The CSR's key is not an ECDSA key. [optional]
friendly_name str The CSR's friendly name. [optional]
id str The CSR's ID. [optional]
key_algorithm str The CSR's key's algorithm. * `rsaEncryption` — RSA. * `id-ecPublicKey` — ECDSA. [optional]
modulus str The CSR's key's modulus, in hexadecimal format. * `null` — The CSR's key is not an RSA key. [optional]

Example

from clientapi_cpanel.models.inline_response200406_result_data import InlineResponse200406ResultData

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

# convert the object into a dict
inline_response200406_result_data_dict = inline_response200406_result_data_instance.to_dict()
# create an instance of InlineResponse200406ResultData from a dict
inline_response200406_result_data_from_dict = InlineResponse200406ResultData.from_dict(inline_response200406_result_data_dict)

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