wechat-work
Version:
sdk for work.weixin.qq.com/api/doc.
20 lines (16 loc) • 412 B
text/typescript
export class Callback {
public url: string;
public token: string;
public encodingaeskey: string;
constructor(url: string, token: string, encodingAESKey: string) {
this.url = url;
this.token = token;
this.encodingaeskey = encodingAESKey;
}
public get encodingAESKey() {
return this.encodingaeskey;
}
public set encodingAESKey(key: string) {
this.encodingaeskey = key;
}
}