sinch-rtc
Version:
RTC JavaScript/Web SDK
41 lines • 1.38 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.PlatformIdentifier = void 0;
exports.PlatformIdentifierFromJSON = PlatformIdentifierFromJSON;
exports.PlatformIdentifierFromJSONTyped = PlatformIdentifierFromJSONTyped;
exports.PlatformIdentifierToJSON = PlatformIdentifierToJSON;
/**
* Platform information, e.g. iOS, Android, JavaScript/web.
* @export
* @enum {string}
*/
var PlatformIdentifier;
(function (PlatformIdentifier) {
PlatformIdentifier["Ios"] = "ios";
PlatformIdentifier["Android"] = "android";
PlatformIdentifier["Js"] = "js";
PlatformIdentifier["Test"] = "test";
})(PlatformIdentifier || (exports.PlatformIdentifier = PlatformIdentifier = {}));
function PlatformIdentifierFromJSON(json) {
return PlatformIdentifierFromJSONTyped(json, false);
}
function PlatformIdentifierFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
function PlatformIdentifierToJSON(value) {
return value;
}
//# sourceMappingURL=PlatformIdentifier.js.map