forked from loafle/openapi-generator-original
* add all parent names * clean up supportsInheritance * fix npe * fix allVars, fix test cases * add more tests, remove comments * update docker m2 cache dir, add more tests, fix mandatory * update samples * regenerate js spec files * add logic to detect self reference * add isSelfReference flag to codegen property * add ruby tests for cat model * remove debugging info * fix JS allvars not have x-js-doctype * update samples * update js samples
93 lines
2.9 KiB
JavaScript
93 lines
2.9 KiB
JavaScript
/**
|
|
* OpenAPI Petstore
|
|
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
|
*
|
|
* OpenAPI spec version: 1.0.0
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
*
|
|
* OpenAPI Generator version: 4.0.0-SNAPSHOT
|
|
*
|
|
* Do not edit the class manually.
|
|
*
|
|
*/
|
|
|
|
(function(root, factory) {
|
|
if (typeof define === 'function' && define.amd) {
|
|
// AMD. Register as an anonymous module.
|
|
define(['ApiClient', 'model/Animal'], factory);
|
|
} else if (typeof module === 'object' && module.exports) {
|
|
// CommonJS-like environments that support module.exports, like Node.
|
|
module.exports = factory(require('../ApiClient'), require('./Animal'));
|
|
} else {
|
|
// Browser globals (root is window)
|
|
if (!root.OpenApiPetstore) {
|
|
root.OpenApiPetstore = {};
|
|
}
|
|
root.OpenApiPetstore.MixedPropertiesAndAdditionalPropertiesClass = factory(root.OpenApiPetstore.ApiClient, root.OpenApiPetstore.Animal);
|
|
}
|
|
}(this, function(ApiClient, Animal) {
|
|
'use strict';
|
|
|
|
|
|
|
|
/**
|
|
* The MixedPropertiesAndAdditionalPropertiesClass model module.
|
|
* @module model/MixedPropertiesAndAdditionalPropertiesClass
|
|
* @version 1.0.0
|
|
*/
|
|
|
|
/**
|
|
* Constructs a new <code>MixedPropertiesAndAdditionalPropertiesClass</code>.
|
|
* @alias module:model/MixedPropertiesAndAdditionalPropertiesClass
|
|
* @class
|
|
*/
|
|
var exports = function() {
|
|
var _this = this;
|
|
|
|
};
|
|
|
|
/**
|
|
* Constructs a <code>MixedPropertiesAndAdditionalPropertiesClass</code> from a plain JavaScript object, optionally creating a new instance.
|
|
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
* @param {module:model/MixedPropertiesAndAdditionalPropertiesClass} obj Optional instance to populate.
|
|
* @return {module:model/MixedPropertiesAndAdditionalPropertiesClass} The populated <code>MixedPropertiesAndAdditionalPropertiesClass</code> instance.
|
|
*/
|
|
exports.constructFromObject = function(data, obj) {
|
|
if (data) {
|
|
obj = obj || new exports();
|
|
if (data.hasOwnProperty('uuid')) {
|
|
obj['uuid'] = ApiClient.convertToType(data['uuid'], 'String');
|
|
}
|
|
if (data.hasOwnProperty('dateTime')) {
|
|
obj['dateTime'] = ApiClient.convertToType(data['dateTime'], 'Date');
|
|
}
|
|
if (data.hasOwnProperty('map')) {
|
|
obj['map'] = ApiClient.convertToType(data['map'], {'String': Animal});
|
|
}
|
|
}
|
|
return obj;
|
|
}
|
|
|
|
/**
|
|
* @member {String} uuid
|
|
*/
|
|
exports.prototype['uuid'] = undefined;
|
|
/**
|
|
* @member {Date} dateTime
|
|
*/
|
|
exports.prototype['dateTime'] = undefined;
|
|
/**
|
|
* @member {Object.<String, module:model/Animal>} map
|
|
*/
|
|
exports.prototype['map'] = undefined;
|
|
|
|
|
|
|
|
return exports;
|
|
}));
|
|
|
|
|