import * as $dara from '@darabonba/typescript'; export declare class UpdateConsumerAPIKeyInput extends $dara.Model { /** * @remarks * Indicates if the key is active. * * @example * false */ active?: boolean; /** * @remarks * A new description for the key. * * @example * 更新后的密钥描述 */ description?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }