UNPKG

sinch-rtc

Version:

RTC JavaScript/Web SDK

40 lines (39 loc) 959 B
/** * 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 RtcProfile */ export interface RtcProfile { /** * * @type {string} * @memberof RtcProfile */ mxpEncryptionKey: string; /** * * @type {string} * @memberof RtcProfile */ mxpBroadcastChannel: string; /** * * @type {string} * @memberof RtcProfile */ mxpSignalChannel: string; } export declare function RtcProfileFromJSON(json: any): RtcProfile; export declare function RtcProfileFromJSONTyped(json: any, ignoreDiscriminator: boolean): RtcProfile; export declare function RtcProfileToJSON(value?: RtcProfile | null): any;