import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; import { Value } from './Value.js'; import type { ValMapsApi } from './ValMapsApi.js'; /** * This class represents the entity "ValMaps" of service "com.sap.hci.api". */ export declare class ValMaps extends Entity implements ValMapsType { /** * Technical entity name for ValMaps. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultBasePath: string; /** * All key fields of the ValMaps entity */ static _keys: string[]; /** * Id. */ id: DeserializedType; /** * Value. */ value: Value; constructor(_entityApi: ValMapsApi); } export interface ValMapsType { id: DeserializedType; value: Value; }