sinch-rtc
Version:
RTC JavaScript/Web SDK
39 lines • 1.14 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.EventType = void 0;
exports.EventTypeFromJSON = EventTypeFromJSON;
exports.EventTypeFromJSONTyped = EventTypeFromJSONTyped;
exports.EventTypeToJSON = EventTypeToJSON;
/**
* Type of ClientEvent
* @export
* @enum {string}
*/
var EventType;
(function (EventType) {
EventType["ClientEventType"] = "ClientEventType";
EventType["EventResultType"] = "EventResultType";
})(EventType || (exports.EventType = EventType = {}));
function EventTypeFromJSON(json) {
return EventTypeFromJSONTyped(json, false);
}
function EventTypeFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
function EventTypeToJSON(value) {
return value;
}
//# sourceMappingURL=EventType.js.map