/** * 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 { FlowPushNotificationAdditionalFilters } from './flowPushNotificationAdditionalFilters'; import { FlowPushNotificationBadgeOptions } from './flowPushNotificationBadgeOptions'; import { PushActionButton } from './pushActionButton'; export declare class FlowPushNotification { 'title'?: string | null; 'body': string; 'sound'?: boolean; 'badge'?: boolean; 'badgeOptions'?: FlowPushNotificationBadgeOptions; /** * The id of an ImageAsset. If provided, this will take precedence over a dynamic_image. */ 'imageId'?: string | null; /** * A dynamic image asset to include in the push notification. */ 'dynamicImage'?: string | null; /** * The ULID of a video asset. If provided, videos and images are mutually exclusive. */ 'videoAssetId'?: string | null; /** * See PushLinkAction in app. This is not a flow action, but the literal action that should be taken when the push notification is tapped. */ 'onOpen'?: FlowPushNotification.OnOpenEnum | 'home' | 'link'; 'iosLink'?: string | null; 'androidLink'?: string | null; /** * The type of push notification to send. */ 'pushType'?: FlowPushNotification.PushTypeEnum | 'silent' | 'standard' | null; 'kvPairs'?: object | null; 'conversionMetricId'?: string | null; 'smartSendingEnabled'?: boolean; 'additionalFilters'?: FlowPushNotificationAdditionalFilters | null; 'actionButtons'?: Array | null; 'name'?: string | null; /** * Not allowed on create. */ 'id'?: string | null; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace FlowPushNotification { enum OnOpenEnum { Home, Link } enum PushTypeEnum { Silent, Standard } }