/** * 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. */ /** * Sentinel vulnerability template model. */ export declare class CustomTemplateContentModel { /** * Gets or sets sentinel cvss. */ 'cVSS'?: { [key: string]: object; }; /** * Gets or sets vulnerability category */ 'cATEGORY'?: string; /** * Gets or sets CveList */ 'cVELIST'?: { [key: string]: object; }; /** * Gets or sets pci flag. */ 'pCIFLAG'?: string; /** * Gets or sets discovery */ 'dISCOVERY'?: { [key: string]: object; }; /** * Gets or sets patchable */ 'pATCHABLE'?: string; /** * One of the following types: Vulnerability/Potential/Information Gathered */ 'vULNTYPE'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }