/** * 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: \" \\ * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. * */ import ApiClient from '../ApiClient'; /** * The Animal model module. * @module model/Animal * @version 1.0.0 */ class Animal { /** * Constructs a new Animal. * @alias module:model/Animal * @param className {String} */ constructor(className) { Animal.initialize(this, className); } /** * Initializes the fields of this object. * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins). * Only for internal use. */ static initialize(obj, className) { obj['className'] = className; } /** * Constructs a Animal from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/Animal} obj Optional instance to populate. * @return {module:model/Animal} The populated Animal instance. */ static constructFromObject(data, obj) { if (data) { obj = obj || new Animal(); if (data.hasOwnProperty('className')) { obj['className'] = ApiClient.convertToType(data['className'], 'String'); } if (data.hasOwnProperty('color')) { obj['color'] = ApiClient.convertToType(data['color'], 'String'); } } return obj; } } /** * @member {String} className */ Animal.prototype['className'] = undefined; /** * @member {String} color * @default 'red' */ Animal.prototype['color'] = 'red'; export default Animal;