/** * Netsparker 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. */ /** * Represent a filter model of {Netsparker.Cloud.Infrastructure.Models.IssueReportFilterApiModel} type. */ export declare 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; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace IssueReportFilterApiModel { enum CsvSeparatorEnum { Comma, Semicolon, Pipe, Tab } enum SeverityEnum { BestPractice, Information, Low, Medium, High, Critical } }