@kintone/kintone-js-sdk
Version:
The SDK of kintone REST API client on node and browser
42 lines (34 loc) • 600 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
/**
* UserBase model
*/
class UserBase {
/**
* @param {String} name
* @param {String} code
*/
constructor(name, code) {
this.name = name;
this.code = code;
}
/**
* Get the name of user
* @return {String} The name of usee
*/
getName() {
return this.name;
}
/**
* Get the code of user
* @return {String} the user ccode
*/
getCode() {
return this.code;
}
}
var _default = UserBase;
exports.default = _default;