netsparker-cloud
Version:
JavaScript client for consuming the Netsparker Cloud API.
47 lines (40 loc) • 1.22 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 CvssScoreValue {
'severity'?: CvssScoreValue.SeverityEnum;
'value'?: number;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "severity",
"baseName": "Severity",
"type": "CvssScoreValue.SeverityEnum"
},
{
"name": "value",
"baseName": "Value",
"type": "number"
} ];
static getAttributeTypeMap() {
return CvssScoreValue.attributeTypeMap;
}
}
export namespace CvssScoreValue {
export enum SeverityEnum {
None = <any> 'None',
Low = <any> 'Low',
Medium = <any> 'Medium',
High = <any> 'High',
Critical = <any> 'Critical'
}
}