import * as $dara from '@darabonba/typescript'; export declare class ResetAppSecretRequest extends $dara.Model { /** * @remarks * The key of the application that is used to make an API call. * * This parameter is required. * * @example * 60030986 */ appKey?: string; /** * @remarks * The new AppKey that you set must be globally unique. * * @example * testAppKey */ newAppKey?: string; /** * @remarks * The new key of the application. To improve compatibility, we recommend that you use other parameters. * * @example * test*** */ newAppSecret?: string; securityToken?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }