netsparker-cloud
Version:
JavaScript client for consuming the Netsparker Cloud API.
116 lines (109 loc) • 2.88 kB
text/typescript
/**
* 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';
export class VulnerabilityClassification {
'asvs40'?: string;
'capec'?: string;
'cwe'?: string;
'disaStig'?: string;
'hipaa'?: string;
'isEmpty'?: boolean;
'iso27001'?: string;
'nistsp80053'?: string;
'owasp2013'?: string;
'owasp2017'?: string;
'owaspApiTop10'?: string;
'owaspProactiveControls'?: string;
'owaspTopTen2021'?: string;
'pci32'?: string;
'wasc'?: string;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "asvs40",
"baseName": "Asvs40",
"type": "string"
},
{
"name": "capec",
"baseName": "Capec",
"type": "string"
},
{
"name": "cwe",
"baseName": "Cwe",
"type": "string"
},
{
"name": "disaStig",
"baseName": "DisaStig",
"type": "string"
},
{
"name": "hipaa",
"baseName": "Hipaa",
"type": "string"
},
{
"name": "isEmpty",
"baseName": "IsEmpty",
"type": "boolean"
},
{
"name": "iso27001",
"baseName": "Iso27001",
"type": "string"
},
{
"name": "nistsp80053",
"baseName": "Nistsp80053",
"type": "string"
},
{
"name": "owasp2013",
"baseName": "Owasp2013",
"type": "string"
},
{
"name": "owasp2017",
"baseName": "Owasp2017",
"type": "string"
},
{
"name": "owaspApiTop10",
"baseName": "OwaspApiTop10",
"type": "string"
},
{
"name": "owaspProactiveControls",
"baseName": "OwaspProactiveControls",
"type": "string"
},
{
"name": "owaspTopTen2021",
"baseName": "OwaspTopTen2021",
"type": "string"
},
{
"name": "pci32",
"baseName": "Pci32",
"type": "string"
},
{
"name": "wasc",
"baseName": "Wasc",
"type": "string"
} ];
static getAttributeTypeMap() {
return VulnerabilityClassification.attributeTypeMap;
}
}