import * as $dara from '@darabonba/typescript'; export declare class DeleteAppRequestTag extends $dara.Model { /** * @remarks * The key of the tag. * * This parameter is required. * * @example * appname */ key?: string; /** * @remarks * The value of the tag. * * @example * testapp */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DeleteAppRequest extends $dara.Model { /** * @remarks * The ID of the application. * * This parameter is required. * * @example * 110840611 */ appId?: number; securityToken?: string; /** * @remarks * The tags. Up to 20 tags are allowed. * * @example * test2 */ tag?: DeleteAppRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }