/** * Whispir Platform API * Whispir Platform API for cross channel and multi channel communications. Documentation on each endpoint is available at https://developers.whispir.com. * * The version of the OpenAPI document: 1.0.0 * Contact: support@whispir.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'; /** * The apns object holds attributes specific to the contacts\' APNS-registered (Apple Push Notification Service) iOS devices */ export class FeaturesPushOptionsApns { /** * The sound to play when the device receives the notification. The value *default* will play the system sound, otherwise this attribute must point to a sound resource in your app\'s main bundle or in the *Library/Sounds* folder of your app\'s container directory. */ 'sound'?: string; /** * The action linked with a user click on the notification. Translates to the *category* attribute in APNS. */ 'action'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "sound", "baseName": "sound", "type": "string" }, { "name": "action", "baseName": "action", "type": "string" } ]; static getAttributeTypeMap() { return FeaturesPushOptionsApns.attributeTypeMap; } }