netsparker-cloud
Version:
JavaScript client for consuming the Netsparker Cloud API.
95 lines (88 loc) • 2.59 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 request content parameters api response mapping class.
*/
export class IssueRequestContentParametersApiModel {
/**
* Gets or sets the parameter name
*/
'name'?: string;
/**
* Gets or sets the parameter value
*/
'value'?: string;
/**
* Gets or sets the parameter type name
*/
'typeName'?: string;
/**
* Gets or sets the input type
*/
'inputType'?: IssueRequestContentParametersApiModel.InputTypeEnum;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "name",
"baseName": "Name",
"type": "string"
},
{
"name": "value",
"baseName": "Value",
"type": "string"
},
{
"name": "typeName",
"baseName": "TypeName",
"type": "string"
},
{
"name": "inputType",
"baseName": "InputType",
"type": "IssueRequestContentParametersApiModel.InputTypeEnum"
} ];
static getAttributeTypeMap() {
return IssueRequestContentParametersApiModel.attributeTypeMap;
}
}
export namespace IssueRequestContentParametersApiModel {
export enum InputTypeEnum {
Hidden = <any> 'Hidden',
Text = <any> 'Text',
Textarea = <any> 'Textarea',
Submit = <any> 'Submit',
Reset = <any> 'Reset',
Button = <any> 'Button',
Image = <any> 'Image',
File = <any> 'File',
Radio = <any> 'Radio',
Select = <any> 'Select',
Checkbox = <any> 'Checkbox',
Password = <any> 'Password',
Color = <any> 'Color',
Date = <any> 'Date',
Datetime = <any> 'Datetime',
DatetimeLocal = <any> 'DatetimeLocal',
Email = <any> 'Email',
Month = <any> 'Month',
Number = <any> 'Number',
Range = <any> 'Range',
Search = <any> 'Search',
Tel = <any> 'Tel',
Time = <any> 'Time',
Url = <any> 'Url',
Week = <any> 'Week',
Output = <any> 'Output'
}
}