/** * 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 PushOnOpenDeepLink { 'type': PushOnOpenDeepLink.TypeEnum | 'deep_link'; /** * required for all platforms enabled for push */ 'iosDeepLink'?: string | null; /** * required for all platforms enabled for push */ 'androidDeepLink'?: string | null; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "type", "baseName": "type", "type": "PushOnOpenDeepLink.TypeEnum" }, { "name": "iosDeepLink", "baseName": "ios_deep_link", "type": "string" }, { "name": "androidDeepLink", "baseName": "android_deep_link", "type": "string" } ]; static getAttributeTypeMap() { return PushOnOpenDeepLink.attributeTypeMap; } } export namespace PushOnOpenDeepLink { export enum TypeEnum { DeepLink = 'deep_link' } }