Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 2 KB

InlineResponse200432ResultData.md

File metadata and controls

36 lines (27 loc) · 2 KB

InlineResponse200432ResultData

Properties

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

Example

from clientapi_cpanel.models.inline_response200432_result_data import InlineResponse200432ResultData

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

# convert the object into a dict
inline_response200432_result_data_dict = inline_response200432_result_data_instance.to_dict()
# create an instance of InlineResponse200432ResultData from a dict
inline_response200432_result_data_from_dict = InlineResponse200432ResultData.from_dict(inline_response200432_result_data_dict)

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