/** * 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 { NumericOperatorNumericFilterValue } from './numericOperatorNumericFilterValue'; import { PriceDropConditionFilter } from './priceDropConditionFilter'; export declare class PriceDropTrigger { 'type': PriceDropTrigger.TypeEnum | 'price-drop'; 'triggerFilter': PriceDropConditionFilter; 'priceDropAmountValue': NumericOperatorNumericFilterValue; /** * Price Drop amount type. */ 'priceDropAmountUnit'?: PriceDropTrigger.PriceDropAmountUnitEnum | 'currency' | 'percent'; 'audience': Array | Array<'checkout-started' | 'viewed'>; 'timeframeDays'?: number; /** * Currency type. */ 'currencyType'?: PriceDropTrigger.CurrencyTypeEnum | 'usd'; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace PriceDropTrigger { enum TypeEnum { PriceDrop } enum PriceDropAmountUnitEnum { Currency, Percent } enum AudienceEnum { CheckoutStarted, Viewed } enum CurrencyTypeEnum { Usd } }