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