import * as $dara from '@darabonba/typescript'; export declare class DescribeAppSecurityRequestTag extends $dara.Model { /** * @remarks * The key of the tag. * * This parameter is required. * * @example * app */ key?: string; /** * @remarks * The value of the tag. * * @example * 123 */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeAppSecurityRequest extends $dara.Model { /** * @remarks * The ID of the app. * * This parameter is required. * * @example * 20112314518278 */ appId?: number; securityToken?: string; /** * @remarks * The tag of objects that match the rule. You can specify multiple tags. * * @example * Key, Value */ tag?: DescribeAppSecurityRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }