UNPKG

sinch-rtc

Version:

RTC JavaScript/Web SDK

45 lines 1.37 kB
"use strict"; /* 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.CallResult = void 0; exports.CallResultFromJSON = CallResultFromJSON; exports.CallResultFromJSONTyped = CallResultFromJSONTyped; exports.CallResultToJSON = CallResultToJSON; /** * * @export * @enum {string} */ var CallResult; (function (CallResult) { CallResult["Failure"] = "failure"; CallResult["Timeout"] = "timeout"; CallResult["Canceled"] = "canceled"; CallResult["NoAnswer"] = "noAnswer"; CallResult["OtherPeerAnswered"] = "otherPeerAnswered"; CallResult["Answered"] = "answered"; CallResult["Denied"] = "denied"; CallResult["Established"] = "established"; })(CallResult || (exports.CallResult = CallResult = {})); function CallResultFromJSON(json) { return CallResultFromJSONTyped(json, false); } function CallResultFromJSONTyped(json, ignoreDiscriminator) { return json; } function CallResultToJSON(value) { return value; } //# sourceMappingURL=CallResult.js.map