sinch-rtc
Version:
RTC JavaScript/Web SDK
41 lines • 1.6 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.ClientErrorDomain = void 0;
exports.ClientErrorDomainFromJSON = ClientErrorDomainFromJSON;
exports.ClientErrorDomainFromJSONTyped = ClientErrorDomainFromJSONTyped;
exports.ClientErrorDomainToJSON = ClientErrorDomainToJSON;
/**
* NOTE: The listed set of enum values are the well-defined error domains. A client should also be allowed to specify any other domain value (given by ^[a-z]+), and in such case an Ocra server-side implementation should not reject other domain values (they should simply be considered opaque).
* @export
* @enum {string}
*/
var ClientErrorDomain;
(function (ClientErrorDomain) {
ClientErrorDomain["Network"] = "network";
ClientErrorDomain["Http"] = "http";
ClientErrorDomain["Api"] = "api";
ClientErrorDomain["Mxp"] = "mxp";
})(ClientErrorDomain || (exports.ClientErrorDomain = ClientErrorDomain = {}));
function ClientErrorDomainFromJSON(json) {
return ClientErrorDomainFromJSONTyped(json, false);
}
function ClientErrorDomainFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
function ClientErrorDomainToJSON(value) {
return value;
}
//# sourceMappingURL=ClientErrorDomain.js.map