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