mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 03:18:53 +00:00
57 lines
692 B
JavaScript
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;
|
|
|