Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.78 KB

InlineResponse200444ResultDataDetailsIssuer.md

File metadata and controls

35 lines (26 loc) · 1.78 KB

InlineResponse200444ResultDataDetailsIssuer

A object that contains the issuer's details.

Properties

Name Type Description Notes
common_name str The issuer's Common Name or Distinguished Name. [optional]
country_name str The certificate's two-letter country code. [optional]
email_address str The issuer's email address. [optional]
locality_name str The issuer's locality or city. [optional]
organization_name str The issuer's organization name. [optional]
state_or_province_name str The issuer's state or province name. [optional]

Example

from clientapi_cpanel.models.inline_response200444_result_data_details_issuer import InlineResponse200444ResultDataDetailsIssuer

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

# convert the object into a dict
inline_response200444_result_data_details_issuer_dict = inline_response200444_result_data_details_issuer_instance.to_dict()
# create an instance of InlineResponse200444ResultDataDetailsIssuer from a dict
inline_response200444_result_data_details_issuer_from_dict = InlineResponse200444ResultDataDetailsIssuer.from_dict(inline_response200444_result_data_details_issuer_dict)

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