Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 2.09 KB

InlineResponse200416ResultData.md

File metadata and controls

37 lines (28 loc) · 2.09 KB

InlineResponse200416ResultData

Properties

Name Type Description Notes
common_name str The CSR's common name. [optional]
created int The date the CSR was created. [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_response200416_result_data import InlineResponse200416ResultData

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

# convert the object into a dict
inline_response200416_result_data_dict = inline_response200416_result_data_instance.to_dict()
# create an instance of InlineResponse200416ResultData from a dict
inline_response200416_result_data_from_dict = InlineResponse200416ResultData.from_dict(inline_response200416_result_data_dict)

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