@kintone/kintone-js-sdk
Version:
The SDK of kintone REST API client on node and browser
42 lines (34 loc) • 646 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
/**
* Credential model
*/
class Credential {
/**
* @param {String} username
* @param {String} password
*/
constructor(username, password) {
this.username = username;
this.password = password;
}
/**
* Get username of Credential model
* @return {String}
*/
getUsername() {
return this.username;
}
/**
* Get password of Credential model
* @return {String}
*/
getPassword() {
return this.password;
}
}
var _default = Credential;
exports.default = _default;