import { DeSerializers, DefaultDeSerializers, DeserializedType, Entity } from '@sap-cloud-sdk/odata-v2'; import type { ConfigurationsApi } from './ConfigurationsApi.js'; /** * This class represents the entity "Configurations" of service "com.sap.hci.api". */ export declare class Configurations extends Entity implements ConfigurationsType { /** * Data Type. * @nullable */ dataType?: DeserializedType | null; /** * Parameter Key. */ parameterKey: DeserializedType; /** * Parameter Value. * @nullable */ parameterValue?: DeserializedType | null; /** * Default url path for the according service. */ static _defaultBasePath: string; /** * Technical entity name for Configurations. */ static _entityName: string; /** * All key fields of the Configurations entity */ static _keys: string[]; constructor(_entityApi: ConfigurationsApi); } export interface ConfigurationsType { dataType?: DeserializedType | null; parameterKey: DeserializedType; parameterValue?: DeserializedType | null; }