/** * Swagger 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 * Contact: apiteam@swagger.io * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. * */ import ApiClient from '../ApiClient'; /** * The Animal model module. * @module model/Animal * @version 1.0.0 */ export default class Animal { /** * Constructs a new Animal. * @alias module:model/Animal * @class * @param className {String} */ constructor(className) { this['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 */ className = undefined; /** * @member {String} color * @default 'red' */ color = 'red'; }