UNPKG

sinch-rtc

Version:

RTC JavaScript/Web SDK

40 lines (39 loc) 1.5 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. */ /** * Push notification profile of remote peer instance. * @export * @interface RemotePeerInstancePushProfile */ export interface RemotePeerInstancePushProfile { /** * * @type {number} * @memberof RemotePeerInstancePushProfile */ maxPayloadSize: number; /** * Whether the push profile is used for "Sinch Managed Push Notifications" or not. * @type {boolean} * @memberof RemotePeerInstancePushProfile */ managed: boolean; /** * Data that is opaque to Sinch. Purpose is to support use cases where Sinch Managed Push Notifications is not desired by customer, and customer want to use their existing push notification transport channel / impl. * @type {string} * @memberof RemotePeerInstancePushProfile */ legacyPushData?: string; } export declare function RemotePeerInstancePushProfileFromJSON(json: any): RemotePeerInstancePushProfile; export declare function RemotePeerInstancePushProfileFromJSONTyped(json: any, ignoreDiscriminator: boolean): RemotePeerInstancePushProfile; export declare function RemotePeerInstancePushProfileToJSON(value?: RemotePeerInstancePushProfile | null): any;