Skip to content

Latest commit

History

History
34 lines (25 loc) · 1.17 KB

File metadata and controls

34 lines (25 loc) · 1.17 KB

SingleCodeCertificateModel

Properties

NameTypeDescriptionNotes
versionint
issued_onstr
expires_onstr
issuer_namestr
serial_numberstr
subject_namestr

Example

fromrevengai.models.single_code_certificate_modelimportSingleCodeCertificateModel# TODO update the JSON string belowjson="{}"# create an instance of SingleCodeCertificateModel from a JSON stringsingle_code_certificate_model_instance=SingleCodeCertificateModel.from_json(json)
# print the JSON string representation of the objectprint(SingleCodeCertificateModel.to_json())
# convert the object into a dictsingle_code_certificate_model_dict=single_code_certificate_model_instance.to_dict()
# create an instance of SingleCodeCertificateModel from a dictsingle_code_certificate_model_from_dict=SingleCodeCertificateModel.from_dict(single_code_certificate_model_dict)

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