/** * Klaviyo API * The Klaviyo REST API. Please visit https://developers.klaviyo.com for more details. * * Contact: developers@klaviyo.com * * 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'; export class StringOperatorStringFilter { 'type': StringOperatorStringFilter.TypeEnum | 'string'; /** * Operators for string filters. */ 'operator': StringOperatorStringFilter.OperatorEnum | 'contains' | 'ends-with' | 'equals' | 'not-contains' | 'not-ends-with' | 'not-equals' | 'not-starts-with' | 'nregex' | 'regex' | 'starts-with'; 'value': string | null; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "type", "baseName": "type", "type": "StringOperatorStringFilter.TypeEnum" }, { "name": "operator", "baseName": "operator", "type": "StringOperatorStringFilter.OperatorEnum" }, { "name": "value", "baseName": "value", "type": "string" } ]; static getAttributeTypeMap() { return StringOperatorStringFilter.attributeTypeMap; } } export namespace StringOperatorStringFilter { export enum TypeEnum { String = 'string' } export enum OperatorEnum { Contains = 'contains', EndsWith = 'ends-with', Equals = 'equals', NotContains = 'not-contains', NotEndsWith = 'not-ends-with', NotEquals = 'not-equals', NotStartsWith = 'not-starts-with', Nregex = 'nregex', Regex = 'regex', StartsWith = 'starts-with' } }