forked from loafle/openapi-generator-original
* Add option modelPropertyNaming to javascript generator Fixes 6530 * Update Petstore sample
147 lines
3.3 KiB
JavaScript
147 lines
3.3 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
|
|
* Do not edit the class manually.
|
|
*
|
|
*/
|
|
|
|
|
|
import ApiClient from '../ApiClient';
|
|
import Category from './Category';
|
|
import Tag from './Tag';
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
* The Pet model module.
|
|
* @module model/Pet
|
|
* @version 1.0.0
|
|
*/
|
|
export default class Pet {
|
|
/**
|
|
* Constructs a new <code>Pet</code>.
|
|
* @alias module:model/Pet
|
|
* @class
|
|
* @param name {String}
|
|
* @param photoUrls {Array.<String>}
|
|
*/
|
|
|
|
constructor(name, photoUrls) {
|
|
|
|
|
|
|
|
|
|
|
|
this['name'] = name;this['photoUrls'] = photoUrls;
|
|
|
|
|
|
}
|
|
|
|
/**
|
|
* Constructs a <code>Pet</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/Pet} obj Optional instance to populate.
|
|
* @return {module:model/Pet} The populated <code>Pet</code> instance.
|
|
*/
|
|
static constructFromObject(data, obj) {
|
|
if (data) {
|
|
obj = obj || new Pet();
|
|
|
|
|
|
|
|
|
|
|
|
if (data.hasOwnProperty('id')) {
|
|
obj['id'] = ApiClient.convertToType(data['id'], 'Number');
|
|
}
|
|
if (data.hasOwnProperty('category')) {
|
|
obj['category'] = Category.constructFromObject(data['category']);
|
|
}
|
|
if (data.hasOwnProperty('name')) {
|
|
obj['name'] = ApiClient.convertToType(data['name'], 'String');
|
|
}
|
|
if (data.hasOwnProperty('photoUrls')) {
|
|
obj['photoUrls'] = ApiClient.convertToType(data['photoUrls'], ['String']);
|
|
}
|
|
if (data.hasOwnProperty('tags')) {
|
|
obj['tags'] = ApiClient.convertToType(data['tags'], [Tag]);
|
|
}
|
|
if (data.hasOwnProperty('status')) {
|
|
obj['status'] = ApiClient.convertToType(data['status'], 'String');
|
|
}
|
|
}
|
|
return obj;
|
|
}
|
|
|
|
/**
|
|
* @member {Number} id
|
|
*/
|
|
id = undefined;
|
|
/**
|
|
* @member {module:model/Category} category
|
|
*/
|
|
category = undefined;
|
|
/**
|
|
* @member {String} name
|
|
*/
|
|
name = undefined;
|
|
/**
|
|
* @member {Array.<String>} photoUrls
|
|
*/
|
|
photoUrls = undefined;
|
|
/**
|
|
* @member {Array.<module:model/Tag>} tags
|
|
*/
|
|
tags = undefined;
|
|
/**
|
|
* pet status in the store
|
|
* @member {module:model/Pet.StatusEnum} status
|
|
*/
|
|
status = undefined;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
* Allowed values for the <code>status</code> property.
|
|
* @enum {String}
|
|
* @readonly
|
|
*/
|
|
static StatusEnum = {
|
|
|
|
/**
|
|
* value: "available"
|
|
* @const
|
|
*/
|
|
"available": "available",
|
|
|
|
/**
|
|
* value: "pending"
|
|
* @const
|
|
*/
|
|
"pending": "pending",
|
|
|
|
/**
|
|
* value: "sold"
|
|
* @const
|
|
*/
|
|
"sold": "sold"
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|