import * as $dara from '@darabonba/typescript'; export declare class DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedAppTagTagInfo 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 DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedAppTag extends $dara.Model { tagInfo?: DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedAppTagTagInfo[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedApp extends $dara.Model { appDescription?: string; appId?: number; appName?: string; authVaildTime?: string; authorizationSource?: string; authorizedTime?: string; description?: string; operator?: string; stageAlias?: string; stageName?: string; tag?: DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedAppTag; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeAuthorizedAppsResponseBodyAuthorizedApps extends $dara.Model { authorizedApp?: DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedApp[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeAuthorizedAppsResponseBody extends $dara.Model { authorizedApps?: DescribeAuthorizedAppsResponseBodyAuthorizedApps; /** * @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 * D6E46F10-F26C-4AA0-BB69-FE2743D9AE62 */ requestId?: string; /** * @remarks * The total number of returned entries. * * @example * 2 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }