import * as $dara from '@darabonba/typescript'; import { CreateConsumerAPIKeyOutput } from "./CreateConsumerApikeyOutput"; export declare class CreateConsumerAPIKeyResult extends $dara.Model { /** * @remarks * `SUCCESS` for a successful operation; otherwise, the corresponding error type. * * @example * SUCCESS */ code?: string; /** * @remarks * Details of the new consumer API key, including the complete key. * * @example * {} */ data?: CreateConsumerAPIKeyOutput; /** * @remarks * A unique request id for issue tracking. * * @example * F8A0F5F3-0C3E-4C82-9D4F-5E4B6A7C8D9E */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }