/** * Invicti 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 { RequestFile } from './models'; /** * Sentinel vulnerability template model. */ export 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 = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "cVSS", "baseName": "CVSS", "type": "{ [key: string]: object; }" }, { "name": "cATEGORY", "baseName": "CATEGORY", "type": "string" }, { "name": "cVELIST", "baseName": "CVE_LIST", "type": "{ [key: string]: object; }" }, { "name": "pCIFLAG", "baseName": "PCI_FLAG", "type": "string" }, { "name": "dISCOVERY", "baseName": "DISCOVERY", "type": "{ [key: string]: object; }" }, { "name": "pATCHABLE", "baseName": "PATCHABLE", "type": "string" }, { "name": "vULNTYPE", "baseName": "VULN_TYPE", "type": "string" } ]; static getAttributeTypeMap() { return CustomTemplateContentModel.attributeTypeMap; } }