sinch-rtc
Version:
RTC JavaScript/Web SDK
34 lines (33 loc) • 1.03 kB
TypeScript
/**
* 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.
*/
/**
* Audio route event emitted by the client
* @export
* @interface AudioRouteEvent
*/
export interface AudioRouteEvent {
/**
* Description of the audio configuration at the moment the audio route change occurs
* @type {string}
* @memberof AudioRouteEvent
*/
description: string;
/**
* Time of the audio route event
* @type {Date}
* @memberof AudioRouteEvent
*/
time: Date;
}
export declare function AudioRouteEventFromJSON(json: any): AudioRouteEvent;
export declare function AudioRouteEventFromJSONTyped(json: any, ignoreDiscriminator: boolean): AudioRouteEvent;
export declare function AudioRouteEventToJSON(value?: AudioRouteEvent | null): any;