sinch-rtc
Version:
RTC JavaScript/Web SDK
43 lines • 1.37 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.IceCandidateType = void 0;
exports.IceCandidateTypeFromJSON = IceCandidateTypeFromJSON;
exports.IceCandidateTypeFromJSONTyped = IceCandidateTypeFromJSONTyped;
exports.IceCandidateTypeToJSON = IceCandidateTypeToJSON;
/**
*
* @export
* @enum {string}
*/
var IceCandidateType;
(function (IceCandidateType) {
IceCandidateType["Host"] = "host";
IceCandidateType["Srflx"] = "srflx";
IceCandidateType["Prflx"] = "prflx";
IceCandidateType["Relay"] = "relay";
IceCandidateType["Local"] = "local";
IceCandidateType["Stun"] = "stun";
})(IceCandidateType || (exports.IceCandidateType = IceCandidateType = {}));
function IceCandidateTypeFromJSON(json) {
return IceCandidateTypeFromJSONTyped(json, false);
}
function IceCandidateTypeFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
function IceCandidateTypeToJSON(value) {
return value;
}
//# sourceMappingURL=IceCandidateType.js.map