import * as $dara from '@darabonba/typescript'; export declare class DescribeDatasetItemListRequest extends $dara.Model { /** * @remarks * The ID of the dataset. * * This parameter is required. * * @example * 602e1f6b3543200eaab0a89e******** */ datasetId?: string; /** * @remarks * The ID of the data entry. You can enter multiple IDs. Separate them with commas (,). * * @example * 5045**** */ datasetItemIds?: string; /** * @remarks * The number of the page to return. Pages start from page 1. Default value: 1. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries to return on each page. Default value: 10. * * @example * 10 */ pageSize?: number; securityToken?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }