mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-07 19:08:52 +00:00
58 lines
739 B
JavaScript
58 lines
739 B
JavaScript
goog.provide('API.Client.User');
|
|
|
|
/**
|
|
* A User who is purchasing from the pet store
|
|
* @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;
|
|
|