/** * 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. */ /** * Represents a class that carries vulnerability information. */ export declare class IssueApiUpdateModel { /** * Gets or sets the identifier. */ 'issueId'?: string; /** * Gets or sets the state. Possible state values are: FalsePositive, AcceptedRisk, FixedCantRetest, FixedUnconfirmed */ 'state'?: string; /** * Gets or sets the assignee identifier. */ 'assigneeId'?: string; /** * Gets or sets the note. */ 'note'?: string; /** * Gets or sets the tags */ 'tags'?: Array; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }