import * as $dara from '@darabonba/typescript'; export declare class DescribeApiProductsByAppResponseBodyApiProductInfoListApiProductInfo extends $dara.Model { apiProductId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeApiProductsByAppResponseBodyApiProductInfoList extends $dara.Model { apiProductInfo?: DescribeApiProductsByAppResponseBodyApiProductInfoListApiProductInfo[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeApiProductsByAppResponseBody extends $dara.Model { apiProductInfoList?: DescribeApiProductsByAppResponseBodyApiProductInfoList; /** * @remarks * The page number. Default value: 1. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page. Default value: 10. * * @example * 10 */ pageSize?: number; /** * @remarks * The request ID. * * @example * 0B805201-AF4C-5788-AC9E-C3EEC83DC82A */ 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; }); }