An object contaning the CSR's contents.
Name | Type | Description | Notes |
---|---|---|---|
common_name | str | The CSR's Common Name or Distinguished Name. | [optional] |
country_name | str | The CSR's ISO-3166 country code. | [optional] |
created | int | The CSR's creation date. | [optional] |
domains | List[str] | A list of the domains that the CSR covers. | [optional] |
email_address | str | The CSR's email address. | [optional] |
friendly_name | str | The CSR's friendly name. | [optional] |
id | str | The CSR's ID. | [optional] |
key_algorithm | str | The key algorithm that encrypts the CSR. | [optional] |
locality_name | str | The certificate's locality or city. | [optional] |
modulus | str | The CSR's modulus. | [optional] |
organization_name | str | The CSR's organization name. | [optional] |
organizational_unit_name | str | The CSR's organizational unit name. | [optional] |
state_or_province_name | str | The CSR's state or province name. | [optional] |
from clientapi_cpanel.models.inline_response200445_result_data_details import InlineResponse200445ResultDataDetails
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200445ResultDataDetails from a JSON string
inline_response200445_result_data_details_instance = InlineResponse200445ResultDataDetails.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200445ResultDataDetails.to_json())
# convert the object into a dict
inline_response200445_result_data_details_dict = inline_response200445_result_data_details_instance.to_dict()
# create an instance of InlineResponse200445ResultDataDetails from a dict
inline_response200445_result_data_details_from_dict = InlineResponse200445ResultDataDetails.from_dict(inline_response200445_result_data_details_dict)