import * as $dara from '@darabonba/typescript'; export declare class ResetAppCodeRequest extends $dara.Model { /** * @remarks * The AppCode of the app. * * This parameter is required. * * @example * 3aaf905a0a1f4f0eabc6d891dfa08afc */ appCode?: string; /** * @remarks * The new AppCode of the app. * * @example * 6f0e7ab2aa5f4b8fb18421e6edf4fb6c2 */ newAppCode?: string; securityToken?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }