openapi-generator/samples/client/petstore/javascript-closure-angular/API/Client/User.js
2016-01-27 23:29:51 -07:00

57 lines
692 B
JavaScript

goog.provide('API.Client.User');
/**
* @record
*/
API.Client.User = function() {}
/**
* @type {!number}
* @export
*/
API.Client.User.prototype.id;
/**
* @type {!string}
* @export
*/
API.Client.User.prototype.username;
/**
* @type {!string}
* @export
*/
API.Client.User.prototype.firstName;
/**
* @type {!string}
* @export
*/
API.Client.User.prototype.lastName;
/**
* @type {!string}
* @export
*/
API.Client.User.prototype.email;
/**
* @type {!string}
* @export
*/
API.Client.User.prototype.password;
/**
* @type {!string}
* @export
*/
API.Client.User.prototype.phone;
/**
* User Status
* @type {!number}
* @export
*/
API.Client.User.prototype.userStatus;