netsparker-cloud
Version:
JavaScript client for consuming the Netsparker Cloud API.
74 lines (67 loc) • 1.78 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';
/**
* Represents a class that carries vulnerability information.
*/
export 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<string>;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "issueId",
"baseName": "IssueId",
"type": "string"
},
{
"name": "state",
"baseName": "State",
"type": "string"
},
{
"name": "assigneeId",
"baseName": "AssigneeId",
"type": "string"
},
{
"name": "note",
"baseName": "Note",
"type": "string"
},
{
"name": "tags",
"baseName": "Tags",
"type": "Array<string>"
} ];
static getAttributeTypeMap() {
return IssueApiUpdateModel.attributeTypeMap;
}
}