export class WxQyOauth { enable: boolean; state: string; constructor( options: { enable?: boolean; state?: string; } = {} ) { this.enable = !!options.enable; this.state = options.state || ""; } }