@bestapps/voice-framework
Version:
Voice Framework
31 lines (24 loc) • 387 B
JavaScript
;
class User {
/**
* @param {Object} data
*/
constructor(data) {
this.userId = data.userId;
}
/**
*
* @returns {string} userId
*/
getUserId() {
return this.userId;
}
/**
*
* @param {string} userId
*/
setUserId(userId) {
this.userId = userId;
}
}
module.exports = User;