/** * 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. */ /** * Stores the characteristics of a version-related issue type. */ export declare class VersionIssue { /** * Gets or sets a description of the steps required to exploit this vulnerability type. */ 'exploit'?: string; /** * Gets or sets the external references relating to this vulnerability type. */ 'externalReferences'?: string; /** * Gets or sets a value that identifies the application ordinal in which this vulnerability type first occurred. */ 'fromVersionOrdinal'?: number; /** * Gets or sets a value that identifies the application version in which this vulnerability type first occurred. */ 'fromVersion'?: string; /** * Gets or sets the unique vulnerability database key of this vulnerability type. */ 'id'?: number; /** * Gets or sets a description of the impact of this vulnerability type. */ 'impact'?: string; /** * Gets or sets a description of the remedy for this vulnerability type. */ 'remedy'?: string; /** * Gets or sets the severity level associated with this vulnerability type. */ 'severity'?: VersionIssue.SeverityEnum; /** * Gets or sets a summary of this vulnerability type. */ 'summary'?: string; /** * Gets or sets the title of this vulnerability type. */ 'title'?: string; /** * Gets or sets a value that identifies the application ordinal in which this vulnerability type last occurred. */ 'toVersionOrdinal'?: number; /** * Gets or sets a value that identifies the application version in which this vulnerability type last occurred. */ 'toVersion'?: string; /** * Gets or sets a code that identifies the generic type of this vulnerability. */ 'vulnerability'?: string; /** * Gets or sets the unique identifier for application. */ 'application'?: number; /** * Gets or sets the BDU BDU specification for version issue. */ 'bdu'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace VersionIssue { enum SeverityEnum { BestPractice, Information, Low, Medium, High, Critical } }