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} * @export */ API.Client.Pet.prototype.photoUrls; /** * @type {!Array} * @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', }