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