| Name | Type | Description | Notes |
|---|---|---|---|
| certificates | List[SingleCodeCertificateModel] | ||
| authenticode_digest | str |
from revengai.models.single_code_signature_model import SingleCodeSignatureModel
# TODO update the JSON string below
json = "{}"
# create an instance of SingleCodeSignatureModel from a JSON string
single_code_signature_model_instance = SingleCodeSignatureModel.from_json(json)
# print the JSON string representation of the object
print(SingleCodeSignatureModel.to_json())
# convert the object into a dict
single_code_signature_model_dict = single_code_signature_model_instance.to_dict()
# create an instance of SingleCodeSignatureModel from a dict
single_code_signature_model_from_dict = SingleCodeSignatureModel.from_dict(single_code_signature_model_dict)