sinch-rtc
Version:
RTC JavaScript/Web SDK
39 lines • 1.24 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.WarningEventType = void 0;
exports.WarningEventTypeFromJSON = WarningEventTypeFromJSON;
exports.WarningEventTypeFromJSONTyped = WarningEventTypeFromJSONTyped;
exports.WarningEventTypeToJSON = WarningEventTypeToJSON;
/**
* Type of warning event
* @export
* @enum {string}
*/
var WarningEventType;
(function (WarningEventType) {
WarningEventType["Trigger"] = "trigger";
WarningEventType["Recover"] = "recover";
})(WarningEventType || (exports.WarningEventType = WarningEventType = {}));
function WarningEventTypeFromJSON(json) {
return WarningEventTypeFromJSONTyped(json, false);
}
function WarningEventTypeFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
function WarningEventTypeToJSON(value) {
return value;
}
//# sourceMappingURL=WarningEventType.js.map