UNPKG

kurento-client-core

Version:

JavaScript Client API for Kurento Media Server

103 lines (86 loc) 2.68 kB
/* Autogenerated with Kurento Idl */ /* * (C) Copyright 2013-2015 Kurento (https://kurento.openvidu.io/) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ var inherits = require('inherits'); var kurentoClient = require('kurento-client'); var checkType = kurentoClient.checkType; var ChecktypeError = checkType.ChecktypeError; var ComplexType = require('./ComplexType'); /** * Type that represents a fraction of an integer numerator over an integer * denominator * * @constructor module:core/complexTypes.Fraction * * @property {external:Integer} numerator * the numerator of the fraction * @property {external:Integer} denominator * the denominator of the fraction */ function Fraction(fractionDict){ if(!(this instanceof Fraction)) return new Fraction(fractionDict) fractionDict = fractionDict || {} // Check fractionDict has the required fields // // checkType('int', 'fractionDict.numerator', fractionDict.numerator, {required: true}); // // checkType('int', 'fractionDict.denominator', fractionDict.denominator, {required: true}); // // Init parent class Fraction.super_.call(this, fractionDict) // Set object properties Object.defineProperties(this, { numerator: { writable: true, enumerable: true, value: fractionDict.numerator }, denominator: { writable: true, enumerable: true, value: fractionDict.denominator } }) } inherits(Fraction, ComplexType) // Private identifiers to allow re-construction of the complexType on the server // They need to be enumerable so JSON.stringify() can access to them Object.defineProperties(Fraction.prototype, { __module__: { enumerable: true, value: "kurento" }, __type__: { enumerable: true, value: "Fraction" } }) /** * Checker for {@link module:core/complexTypes.Fraction} * * @memberof module:core/complexTypes * * @param {external:String} key * @param {module:core/complexTypes.Fraction} value */ function checkFraction(key, value) { if(!(value instanceof Fraction)) throw ChecktypeError(key, Fraction, value); }; module.exports = Fraction; Fraction.check = checkFraction;