Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 2.19 KB

InlineResponse200446ResultDataDetails.md

File metadata and controls

38 lines (29 loc) · 2.19 KB

InlineResponse200446ResultDataDetails

An object of the key's details.

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's ID. [optional]
key str The key's contents. [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_response200446_result_data_details import InlineResponse200446ResultDataDetails

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

# convert the object into a dict
inline_response200446_result_data_details_dict = inline_response200446_result_data_details_instance.to_dict()
# create an instance of InlineResponse200446ResultDataDetails from a dict
inline_response200446_result_data_details_from_dict = InlineResponse200446ResultDataDetails.from_dict(inline_response200446_result_data_details_dict)

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