import * as $dara from '@darabonba/typescript'; export declare class DescribeAppAttributesResponseBodyAppsAppAttributeTagsTagInfo extends $dara.Model { key?: string; value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeAppAttributesResponseBodyAppsAppAttributeTags extends $dara.Model { tagInfo?: DescribeAppAttributesResponseBodyAppsAppAttributeTagsTagInfo[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeAppAttributesResponseBodyAppsAppAttribute extends $dara.Model { appId?: number; appName?: string; createdTime?: string; description?: string; disabled?: boolean; extend?: string; modifiedTime?: string; tags?: DescribeAppAttributesResponseBodyAppsAppAttributeTags; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeAppAttributesResponseBodyApps extends $dara.Model { appAttribute?: DescribeAppAttributesResponseBodyAppsAppAttribute[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeAppAttributesResponseBody extends $dara.Model { apps?: DescribeAppAttributesResponseBodyApps; /** * @remarks * The page number of the returned page. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries returned per page. * * @example * 10 */ pageSize?: number; /** * @remarks * The ID of the request. * * @example * 8883AC74-259D-4C0B-99FC-0B7F9A588B2F */ requestId?: string; /** * @remarks * The total number of returned entries. * * @example * 1 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }