Skip to content

Latest commit

History

History
30 lines (21 loc) · 1.1 KB

File metadata and controls

30 lines (21 loc) · 1.1 KB

SingleCodeSignatureModel

Properties

NameTypeDescriptionNotes
certificatesList[SingleCodeCertificateModel]
authenticode_digeststr

Example

fromrevengai.models.single_code_signature_modelimportSingleCodeSignatureModel# TODO update the JSON string belowjson="{}"# create an instance of SingleCodeSignatureModel from a JSON stringsingle_code_signature_model_instance=SingleCodeSignatureModel.from_json(json)
# print the JSON string representation of the objectprint(SingleCodeSignatureModel.to_json())
# convert the object into a dictsingle_code_signature_model_dict=single_code_signature_model_instance.to_dict()
# create an instance of SingleCodeSignatureModel from a dictsingle_code_signature_model_from_dict=SingleCodeSignatureModel.from_dict(single_code_signature_model_dict)

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