/** * 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'; /** * Represent a filter model of {Netsparker.Cloud.Infrastructure.Models.IssueReportFilterApiModel} type. */ export class IssueReportFilterApiModel { /** * Gets or sets the csv separator. */ 'csvSeparator'?: IssueReportFilterApiModel.CsvSeparatorEnum; /** * Gets or sets the vulnerability\'s severity. */ 'severity'?: IssueReportFilterApiModel.SeverityEnum; /** * Gets or sets the website group\'s name. */ 'websiteGroupName'?: string; /** * Gets or sets the website\'s name. */ 'webSiteName'?: string; /** * Start date identify the starting point for date range. It is less than or equal to Date field. Format: MM/dd/yyyy 00:00:00 */ 'startDate'?: Date; /** * End date identify the end point for date range. It is greater than or equal to Date field. Format: MM/dd/yyyy 23:59:59 */ 'endDate'?: Date; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "csvSeparator", "baseName": "CsvSeparator", "type": "IssueReportFilterApiModel.CsvSeparatorEnum" }, { "name": "severity", "baseName": "Severity", "type": "IssueReportFilterApiModel.SeverityEnum" }, { "name": "websiteGroupName", "baseName": "WebsiteGroupName", "type": "string" }, { "name": "webSiteName", "baseName": "WebSiteName", "type": "string" }, { "name": "startDate", "baseName": "StartDate", "type": "Date" }, { "name": "endDate", "baseName": "EndDate", "type": "Date" } ]; static getAttributeTypeMap() { return IssueReportFilterApiModel.attributeTypeMap; } } export namespace IssueReportFilterApiModel { export enum CsvSeparatorEnum { Comma = 'Comma', Semicolon = 'Semicolon', Pipe = 'Pipe', Tab = 'Tab' } export enum SeverityEnum { BestPractice = 'BestPractice', Information = 'Information', Low = 'Low', Medium = 'Medium', High = 'High', Critical = 'Critical' } }