import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; import type { DataStoreEntriesApi } from './DataStoreEntriesApi.js'; /** * This class represents the entity "DataStoreEntries" of service "com.sap.hci.api". */ export declare class DataStoreEntries extends Entity implements DataStoreEntriesType { /** * Technical entity name for DataStoreEntries. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultBasePath: string; /** * All key fields of the DataStoreEntries entity */ static _keys: string[]; /** * Id. */ id: DeserializedType; /** * Data Store Name. */ dataStoreName: DeserializedType; /** * Integration Flow. */ integrationFlow: DeserializedType; /** * Type. */ type: DeserializedType; /** * Status. * @nullable */ status?: DeserializedType | null; /** * Message Id. * @nullable */ messageId?: DeserializedType | null; /** * Due At. * @nullable */ dueAt?: DeserializedType | null; /** * Created At. * @nullable */ createdAt?: DeserializedType | null; /** * Retain Until. * @nullable */ retainUntil?: DeserializedType | null; constructor(_entityApi: DataStoreEntriesApi); } export interface DataStoreEntriesType { id: DeserializedType; dataStoreName: DeserializedType; integrationFlow: DeserializedType; type: DeserializedType; status?: DeserializedType | null; messageId?: DeserializedType | null; dueAt?: DeserializedType | null; createdAt?: DeserializedType | null; retainUntil?: DeserializedType | null; }