import * as $dara from '@darabonba/typescript'; export declare class DescribeDatasetItemListResponseBodyDatasetItemInfoList extends $dara.Model { /** * @remarks * The time when the data entry was created. * * @example * 2022-09-21T12:58:43Z */ createdTime?: string; /** * @remarks * The ID of the dataset. * * @example * 4add6a61804e47858266883e******** */ datasetId?: string; /** * @remarks * The ID of the data entry. * * @example * 5045**** */ datasetItemId?: string; /** * @remarks * The description of the data entry. * * @example * Description */ description?: string; /** * @remarks * The time in UTC when the data entry expires. The time is in the **yyyy-MM-ddTHH:mm:ssZ** format. If this parameter is empty, the data entry does not expire. * * @example * 2022-09-22T12:00:00Z */ expiredTime?: string; /** * @remarks * The last modification time (UTC) of the data entry. * * @example * 2022-09-21T12:58:43Z */ modifiedTime?: string; /** * @remarks * The value of the data entry. * * @example * 106.43.XXX.XXX */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeDatasetItemListResponseBody extends $dara.Model { /** * @remarks * The Dataset information. */ datasetItemInfoList?: DescribeDatasetItemListResponseBodyDatasetItemInfoList[]; /** * @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 * C6E9C6E4-608B-5C0F-9783-E288******** */ requestId?: string; /** * @remarks * The total number of entries returned. * * @example * 20 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }