import * as $dara from '@darabonba/typescript'; export declare class CreateAppKeyRequest extends $dara.Model { /** * @remarks * The application ID. * * This parameter is required. * * @example * 111053351 */ appId?: string; /** * @remarks * The application AppKey. * * @example * 204203237 */ appKey?: string; /** * @remarks * The application AppSecret. * * @example * 6f0a4ad7918a4b41a57fc087d5b066d0 */ appSecret?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }