/** * 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'; import { ServerBISSubscriptionCreateQueryResourceObjectAttributesProfile } from './serverBISSubscriptionCreateQueryResourceObjectAttributesProfile'; export class ServerBISSubscriptionCreateQueryResourceObjectAttributes { /** * The channel(s) through which the profile would like to receive the back in stock notification. This can be leveraged within a back in stock flow to notify the subscriber through their preferred channel(s). */ 'channels': Array | Array<'EMAIL' | 'PUSH' | 'SMS' | 'WHATSAPP'>; 'profile'?: ServerBISSubscriptionCreateQueryResourceObjectAttributesProfile | null; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "channels", "baseName": "channels", "type": "Array" }, { "name": "profile", "baseName": "profile", "type": "ServerBISSubscriptionCreateQueryResourceObjectAttributesProfile" } ]; static getAttributeTypeMap() { return ServerBISSubscriptionCreateQueryResourceObjectAttributes.attributeTypeMap; } } export namespace ServerBISSubscriptionCreateQueryResourceObjectAttributes { export enum ChannelsEnum { Email = 'EMAIL', Push = 'PUSH', Sms = 'SMS', Whatsapp = 'WHATSAPP' } }