@chevre/domain
Version:
Chevre Domain Library for Node.js
17 lines (16 loc) • 510 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.LINENotifyCredentials = void 0;
/**
* 通知認証情報
*/
class LINENotifyCredentials {
constructor(options) {
const { url, accessToken, accessTokenAlert, accessTokenInfo } = options;
this.url = url;
this.accessToken = accessToken;
this.accessTokenAlert = accessTokenAlert;
this.accessTokenInfo = accessTokenInfo;
}
}
exports.LINENotifyCredentials = LINENotifyCredentials;
;