wechat-work
Version:
sdk for work.weixin.qq.com/api/doc.
22 lines • 660 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var Callback = /** @class */ (function () {
function Callback(url, token, encodingAESKey) {
this.url = url;
this.token = token;
this.encodingaeskey = encodingAESKey;
}
Object.defineProperty(Callback.prototype, "encodingAESKey", {
get: function () {
return this.encodingaeskey;
},
set: function (key) {
this.encodingaeskey = key;
},
enumerable: true,
configurable: true
});
return Callback;
}());
exports.Callback = Callback;
//# sourceMappingURL=callback.class.js.map