Paŭlo Ebermann 3a48ba8bfd Update all the samples.
(except clojure + scalatra, because those are broken, will fixed with later master merge.)
2017-03-13 19:50:10 +01:00

52 lines
731 B
JavaScript

goog.provide('API.Client.Pet');
/**
* A pet for sale in the pet store
* @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',
}