import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; import type { MdiDeltaTokenApi } from './MdiDeltaTokenApi.js'; /** * This class represents the entity "MDIDeltaToken" of service "com.sap.hci.api". */ export declare class MdiDeltaToken extends Entity implements MdiDeltaTokenType { /** * Technical entity name for MdiDeltaToken. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultBasePath: string; /** * All key fields of the MdiDeltaToken entity */ static _keys: string[]; /** * Operation. */ operation: DeserializedType; /** * Entity. */ entity: DeserializedType; /** * Version. */ version: DeserializedType; /** * Delta Token. * @nullable */ deltaToken?: DeserializedType | null; /** * Last Update Timestamp. * @nullable */ lastUpdateTimestamp?: DeserializedType | null; constructor(_entityApi: MdiDeltaTokenApi); } export interface MdiDeltaTokenType { operation: DeserializedType; entity: DeserializedType; version: DeserializedType; deltaToken?: DeserializedType | null; lastUpdateTimestamp?: DeserializedType | null; }