/** * 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 model for file. */ export class ApiFileModel { /** * Gets or sets the content in Base64 format. */ 'content': string; /** * Gets or sets the name of the file. */ 'fileName': string; /** * Gets or sets the type of the importer. */ 'importerType'?: ApiFileModel.ImporterTypeEnum; /** * Gets or sets the url. */ 'uRL'?: string; /** * Gets or sets the api url. */ 'apiURL'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "content", "baseName": "Content", "type": "string" }, { "name": "fileName", "baseName": "FileName", "type": "string" }, { "name": "importerType", "baseName": "ImporterType", "type": "ApiFileModel.ImporterTypeEnum" }, { "name": "uRL", "baseName": "URL", "type": "string" }, { "name": "apiURL", "baseName": "ApiURL", "type": "string" } ]; static getAttributeTypeMap() { return ApiFileModel.attributeTypeMap; } } export namespace ApiFileModel { export enum ImporterTypeEnum { None = 'None', Fiddler = 'Fiddler', Burp = 'Burp', Swagger = 'Swagger', OwaspZap = 'OwaspZap', AspNet = 'AspNet', HttpArchive = 'HttpArchive', Wadl = 'Wadl', Wsdl = 'Wsdl', Postman = 'Postman', Netsparker = 'Netsparker', HttpRequestImporter = 'HttpRequestImporter', LinkImporter = 'LinkImporter', CsvImporter = 'CsvImporter', Iodocs = 'Iodocs', WordPress = 'WordPress', Raml = 'Raml', GraphQl = 'GraphQl', AcxXml = 'AcxXml' } }