sinch-rtc
Version:
RTC JavaScript/Web SDK
39 lines • 1.1 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.Direction = void 0;
exports.DirectionFromJSON = DirectionFromJSON;
exports.DirectionFromJSONTyped = DirectionFromJSONTyped;
exports.DirectionToJSON = DirectionToJSON;
/**
* Call direction
* @export
* @enum {string}
*/
var Direction;
(function (Direction) {
Direction["Inbound"] = "inbound";
Direction["Outbound"] = "outbound";
})(Direction || (exports.Direction = Direction = {}));
function DirectionFromJSON(json) {
return DirectionFromJSONTyped(json, false);
}
function DirectionFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
function DirectionToJSON(value) {
return value;
}
//# sourceMappingURL=Direction.js.map