import { DeSerializers, DefaultDeSerializers, DeserializedType, Entity } from '@sap-cloud-sdk/odata-v2'; import type { CustomTagConfigurationsApi } from './CustomTagConfigurationsApi.js'; /** * This class represents the entity "CustomTagConfigurations" of service "com.sap.hci.api". */ export declare class CustomTagConfigurations extends Entity implements CustomTagConfigurationsType { /** * Custom Tags Configuration Content. * @nullable */ customTagsConfigurationContent?: DeserializedType | null; /** * Id. */ id: DeserializedType; /** * Default url path for the according service. */ static _defaultBasePath: string; /** * Technical entity name for CustomTagConfigurations. */ static _entityName: string; /** * All key fields of the CustomTagConfigurations entity */ static _keys: string[]; constructor(_entityApi: CustomTagConfigurationsApi); } export interface CustomTagConfigurationsType { customTagsConfigurationContent?: DeserializedType | null; id: DeserializedType; }