| Name | Type | Description | Notes |
|---|---|---|---|
| signed | bool | ||
| valid_signature | bool | ||
| signatures | List[SingleCodeSignatureModel] |
fromrevengai.models.code_signature_modelimportCodeSignatureModel# TODO update the JSON string belowjson="{}"# create an instance of CodeSignatureModel from a JSON stringcode_signature_model_instance=CodeSignatureModel.from_json(json)
# print the JSON string representation of the objectprint(CodeSignatureModel.to_json())
# convert the object into a dictcode_signature_model_dict=code_signature_model_instance.to_dict()
# create an instance of CodeSignatureModel from a dictcode_signature_model_from_dict=CodeSignatureModel.from_dict(code_signature_model_dict)