Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 2.13 KB

InlineResponse200418ResultData.md

File metadata and controls

38 lines (29 loc) · 2.13 KB

InlineResponse200418ResultData

Properties

Name Type Description Notes
common_name str The name that issued the CSR. [optional]
created int The date the CSR was created. [optional]
domains List[str] 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]
text str The CSR's text. [optional]

Example

from clientapi_cpanel.models.inline_response200418_result_data import InlineResponse200418ResultData

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

# convert the object into a dict
inline_response200418_result_data_dict = inline_response200418_result_data_instance.to_dict()
# create an instance of InlineResponse200418ResultData from a dict
inline_response200418_result_data_from_dict = InlineResponse200418ResultData.from_dict(inline_response200418_result_data_dict)

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