sinch-rtc
Version:
RTC JavaScript/Web SDK
41 lines • 1.08 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.Domain = void 0;
exports.DomainFromJSON = DomainFromJSON;
exports.DomainFromJSONTyped = DomainFromJSONTyped;
exports.DomainToJSON = DomainToJSON;
/**
*
* @export
* @enum {string}
*/
var Domain;
(function (Domain) {
Domain["Mxp"] = "mxp";
Domain["Pstn"] = "pstn";
Domain["Sip"] = "sip";
Domain["Conference"] = "conference";
})(Domain || (exports.Domain = Domain = {}));
function DomainFromJSON(json) {
return DomainFromJSONTyped(json, false);
}
function DomainFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
function DomainToJSON(value) {
return value;
}
//# sourceMappingURL=Domain.js.map