sinch-rtc
Version:
RTC JavaScript/Web SDK
39 lines • 1.22 kB
JavaScript
;
/* tslint:disable */
/* eslint-disable */
/**
* 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.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.MediaStreamType = void 0;
exports.MediaStreamTypeFromJSON = MediaStreamTypeFromJSON;
exports.MediaStreamTypeFromJSONTyped = MediaStreamTypeFromJSONTyped;
exports.MediaStreamTypeToJSON = MediaStreamTypeToJSON;
/**
* Type of the media stream
* @export
* @enum {string}
*/
var MediaStreamType;
(function (MediaStreamType) {
MediaStreamType["Audio"] = "audio";
MediaStreamType["Video"] = "video";
})(MediaStreamType || (exports.MediaStreamType = MediaStreamType = {}));
function MediaStreamTypeFromJSON(json) {
return MediaStreamTypeFromJSONTyped(json, false);
}
function MediaStreamTypeFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
function MediaStreamTypeToJSON(value) {
return value;
}
//# sourceMappingURL=MediaStreamType.js.map