UNPKG

sinch-rtc

Version:

RTC JavaScript/Web SDK

35 lines (34 loc) 1 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 { MxpPubSubConfig } from './'; /** * * @export * @interface RtcConfig */ export interface RtcConfig { /** * * @type {MxpPubSubConfig} * @memberof RtcConfig */ mxpPubSubConfig: MxpPubSubConfig; /** * Legacy STUN server URIs until we have full TURN support in place (see webrtc.RTCIceServer) * @type {Array<string>} * @memberof RtcConfig */ legacyStunUrls?: Array<string>; } export declare function RtcConfigFromJSON(json: any): RtcConfig; export declare function RtcConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): RtcConfig; export declare function RtcConfigToJSON(value?: RtcConfig | null): any;