forked from loafle/openapi-generator-original
22 lines
319 B
JavaScript
22 lines
319 B
JavaScript
goog.provide('API.Client.inline_object');
|
|
|
|
/**
|
|
* @record
|
|
*/
|
|
API.Client.InlineObject = function() {}
|
|
|
|
/**
|
|
* Updated name of the pet
|
|
* @type {!string}
|
|
* @export
|
|
*/
|
|
API.Client.InlineObject.prototype.name;
|
|
|
|
/**
|
|
* Updated status of the pet
|
|
* @type {!string}
|
|
* @export
|
|
*/
|
|
API.Client.InlineObject.prototype.status;
|
|
|