netsparker-cloud
Version:
JavaScript client for consuming the Netsparker Cloud API.
65 lines (58 loc) • 1.69 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';
/**
* Issue vulnerability content model.
*/
export class VulnerabilityContentApiModel {
/**
* Gets or sets the request content of a vulnerability.
*/
'requestContent'?: string;
/**
* Gets or sets the response content of a vulnerability.
*/
'responseContent'?: string;
/**
* Gets or sets the injection content of a vulnerability.
*/
'injectionContent'?: string;
/**
* Gets or sets the response duration.
*/
'responseDuration'?: number;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "requestContent",
"baseName": "RequestContent",
"type": "string"
},
{
"name": "responseContent",
"baseName": "ResponseContent",
"type": "string"
},
{
"name": "injectionContent",
"baseName": "InjectionContent",
"type": "string"
},
{
"name": "responseDuration",
"baseName": "ResponseDuration",
"type": "number"
} ];
static getAttributeTypeMap() {
return VulnerabilityContentApiModel.attributeTypeMap;
}
}