import * as $dara from '@darabonba/typescript'; export declare class DescribeAppsByApiProductResponseBodyAuthorizedAppsAuthorizedApp extends $dara.Model { appId?: number; appName?: string; authValidTime?: string; authorizedTime?: string; description?: string; extend?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeAppsByApiProductResponseBodyAuthorizedApps extends $dara.Model { authorizedApp?: DescribeAppsByApiProductResponseBodyAuthorizedAppsAuthorizedApp[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeAppsByApiProductResponseBody extends $dara.Model { authorizedApps?: DescribeAppsByApiProductResponseBodyAuthorizedApps; /** * @remarks * The page number. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page. * * @example * 10 */ pageSize?: number; /** * @remarks * The request ID. * * @example * AC866798-62D3-52F4-8AB5-CA149A53984F */ requestId?: string; /** * @remarks * The total number of returned entries. * * @example * 4 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }