UNPKG

sinch-rtc

Version:

RTC JavaScript/Web SDK

41 lines (40 loc) 1.17 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. */ import { RemotePeerInstancePushProfile } from './'; /** * RTC client instance (remote peer) * @export * @interface RemotePeerInstance */ export interface RemotePeerInstance { /** * * @type {string} * @memberof RemotePeerInstance */ id?: string; /** * * @type {Array<string>} * @memberof RemotePeerInstance */ capabilities?: Array<string>; /** * * @type {RemotePeerInstancePushProfile} * @memberof RemotePeerInstance */ pushProfile?: RemotePeerInstancePushProfile; } export declare function RemotePeerInstanceFromJSON(json: any): RemotePeerInstance; export declare function RemotePeerInstanceFromJSONTyped(json: any, ignoreDiscriminator: boolean): RemotePeerInstance; export declare function RemotePeerInstanceToJSON(value?: RemotePeerInstance | null): any;