mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 19:33:55 +00:00
51 lines
696 B
JavaScript
51 lines
696 B
JavaScript
goog.provide('API.Client.Pet');
|
|
|
|
/**
|
|
* @record
|
|
*/
|
|
API.Client.Pet = function() {}
|
|
|
|
/**
|
|
* @type {!number}
|
|
* @export
|
|
*/
|
|
API.Client.Pet.prototype.id;
|
|
|
|
/**
|
|
* @type {!API.Client.Category}
|
|
* @export
|
|
*/
|
|
API.Client.Pet.prototype.category;
|
|
|
|
/**
|
|
* @type {!string}
|
|
* @export
|
|
*/
|
|
API.Client.Pet.prototype.name;
|
|
|
|
/**
|
|
* @type {!Array<!string>}
|
|
* @export
|
|
*/
|
|
API.Client.Pet.prototype.photoUrls;
|
|
|
|
/**
|
|
* @type {!Array<!API.Client.Tag>}
|
|
* @export
|
|
*/
|
|
API.Client.Pet.prototype.tags;
|
|
|
|
/**
|
|
* pet status in the store
|
|
* @type {!string}
|
|
* @export
|
|
*/
|
|
API.Client.Pet.prototype.status;
|
|
|
|
/** @enum {string} */
|
|
API.Client.Pet.StatusEnum = {
|
|
available: 'available',
|
|
pending: 'pending',
|
|
sold: 'sold',
|
|
}
|