UNPKG

sinch-rtc

Version:

RTC JavaScript/Web SDK

61 lines (60 loc) 1.43 kB
/** * Ocra (REST API for Sinch RTC clients) * REST API for Sinch RTC clients. * * The version of the OpenAPI document: 0.11.0 * Contact: rtc@sinch.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ApnPushProfile */ export interface ApnPushProfile { /** * * @type {string} * @memberof ApnPushProfile */ tokenType: ApnPushProfileTokenTypeEnum; /** * * @type {string} * @memberof ApnPushProfile */ deviceToken: string; /** * * @type {string} * @memberof ApnPushProfile */ environment: ApnPushProfileEnvironmentEnum; /** * iOS App Bundle ID. * @type {string} * @memberof ApnPushProfile */ bundleId: string; } /** * @export * @enum {string} */ export declare enum ApnPushProfileTokenTypeEnum { Voip = "voip", Default = "default" } /** * @export * @enum {string} */ export declare enum ApnPushProfileEnvironmentEnum { Development = "development", Production = "production" } export declare function ApnPushProfileFromJSON(json: any): ApnPushProfile; export declare function ApnPushProfileFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApnPushProfile; export declare function ApnPushProfileToJSON(value?: ApnPushProfile | null): any;