/** * Netsparker Enterprise API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { CustomTemplateContentModel } from './customTemplateContentModel'; /** * Vulnerability template extended model. */ export declare class CustomTemplateModel { /** * Unique ID for each vulnerability template, calculated by (date | shasum -a 256) */ 'sourceTemplateId'?: string; /** * Title of the vulnerability */ 'title'?: string; /** * Details of the vulnerability, including impact */ 'description'?: string; /** * Remediation guideline with relevant links */ 'remediation'?: string; /** * 1 to 5 with 5 being the most severe */ 'severity'?: number; 'template'?: CustomTemplateContentModel; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }