Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 2.22 KB

InlineResponse200445ResultDataDetails.md

File metadata and controls

42 lines (33 loc) · 2.22 KB

InlineResponse200445ResultDataDetails

An object contaning the CSR's contents.

Properties

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]

Example

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)

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