/** * 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'; /** * Exclude filter. */ export class ExcludeFilter { /** * Gets or sets the excluded SLDS. */ 'excludedSlds'?: Array; /** * Gets or sets the excluded TLDS. */ 'excludedTlds'?: Array; /** * Gets or sets the excluded ip addresses. */ 'excludedIpAddresses'?: Array; /** * Gets or sets the excluded domains. */ 'excludedDomains'?: Array; /** * Gets or sets the excluded organizations. */ 'excludedOrganizations'?: Array; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "excludedSlds", "baseName": "ExcludedSlds", "type": "Array" }, { "name": "excludedTlds", "baseName": "ExcludedTlds", "type": "Array" }, { "name": "excludedIpAddresses", "baseName": "ExcludedIpAddresses", "type": "Array" }, { "name": "excludedDomains", "baseName": "ExcludedDomains", "type": "Array" }, { "name": "excludedOrganizations", "baseName": "ExcludedOrganizations", "type": "Array" } ]; static getAttributeTypeMap() { return ExcludeFilter.attributeTypeMap; } }