import * as $dara from '@darabonba/typescript'; export declare class DescribeDatasetItemInfoResponseBodyDatasetItemInfo extends $dara.Model { /** * @remarks * The creation time (UTC) of the data entry. * * @example * 2022-09-21T12:58:43Z */ createdTime?: string; /** * @remarks * The ID of the dataset. * * @example * 626238665db4a5140eea3e40******** */ 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 DescribeDatasetItemInfoResponseBody extends $dara.Model { /** * @remarks * The Dataset information. */ datasetItemInfo?: DescribeDatasetItemInfoResponseBodyDatasetItemInfo; /** * @remarks * The ID of the request. * * @example * 5BAFA85F-38E3-5D9E-9E32-4B09******** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }