/** * 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 = 'Hidden', Text = 'Text', Textarea = 'Textarea', Submit = 'Submit', Reset = 'Reset', Button = 'Button', Image = 'Image', File = 'File', Radio = 'Radio', Select = 'Select', Checkbox = 'Checkbox', Password = 'Password', Color = 'Color', Date = 'Date', Datetime = 'Datetime', DatetimeLocal = 'DatetimeLocal', Email = 'Email', Month = 'Month', Number = 'Number', Range = 'Range', Search = 'Search', Tel = 'Tel', Time = 'Time', Url = 'Url', Week = 'Week', Output = 'Output' } }