mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-16 00:21:19 +00:00
Add sample output from Javascript Closure Angular
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
goog.provide('API.Client.Order');
|
||||
|
||||
/**
|
||||
* @record
|
||||
*/
|
||||
API.Client.Order = function() {}
|
||||
|
||||
/**
|
||||
* @type {!number}
|
||||
* @export
|
||||
*/
|
||||
API.Client.Order.prototype.id;
|
||||
|
||||
/**
|
||||
* @type {!number}
|
||||
* @export
|
||||
*/
|
||||
API.Client.Order.prototype.petId;
|
||||
|
||||
/**
|
||||
* @type {!number}
|
||||
* @export
|
||||
*/
|
||||
API.Client.Order.prototype.quantity;
|
||||
|
||||
/**
|
||||
* @type {!Date}
|
||||
* @export
|
||||
*/
|
||||
API.Client.Order.prototype.shipDate;
|
||||
|
||||
/**
|
||||
* Order Status
|
||||
* @type {!string}
|
||||
* @export
|
||||
*/
|
||||
API.Client.Order.prototype.status;
|
||||
|
||||
/**
|
||||
* @type {!boolean}
|
||||
* @export
|
||||
*/
|
||||
API.Client.Order.prototype.complete;
|
||||
|
||||
/** @enum {string} */
|
||||
API.Client.Order.StatusEnum = {
|
||||
placed: 'placed',
|
||||
approved: 'approved',
|
||||
delivered: 'delivered',
|
||||
}
|
||||
Reference in New Issue
Block a user