import { ValMapSchema } from './ValMapSchema.js'; import { ValMapSchemaRequestBuilder } from './ValMapSchemaRequestBuilder.js'; import { ValMapsApi } from './ValMapsApi.js'; import { DefaultValMapsApi } from './DefaultValMapsApi.js'; import { CustomField, DefaultDeSerializers, DeSerializers, AllFields, EntityBuilderType, EntityApi, FieldBuilder, OrderableEdmTypeField, Link } from '@sap-cloud-sdk/odata-v2'; export declare class ValMapSchemaApi implements EntityApi, DeSerializersT> { deSerializers: DeSerializersT; private constructor(); /** * Do not use this method or the constructor directly. * Use the service function as described in the documentation to get an API instance. */ static _privateFactory(deSerializers?: DeSerializersT): ValMapSchemaApi; private navigationPropertyFields; _addNavigationProperties(linkedApis: [ValMapsApi, DefaultValMapsApi]): this; entityConstructor: typeof ValMapSchema; requestBuilder(): ValMapSchemaRequestBuilder; entityBuilder(): EntityBuilderType, DeSerializersT>; customField(fieldName: string, isNullable?: NullableT): CustomField, DeSerializersT, NullableT>; private _fieldBuilder?; get fieldBuilder(): FieldBuilder; private _schema?; get schema(): { SRC_AGENCY: OrderableEdmTypeField>, DeSerializersT, "Edm.String", false, true>; SRC_ID: OrderableEdmTypeField>, DeSerializersT, "Edm.String", false, true>; TGT_AGENCY: OrderableEdmTypeField>, DeSerializersT, "Edm.String", false, true>; TGT_ID: OrderableEdmTypeField>, DeSerializersT, "Edm.String", false, true>; STATE: OrderableEdmTypeField>, DeSerializersT, "Edm.String", true, true>; /** * Static representation of the one-to-many navigation property {@link valMaps} for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ VAL_MAPS: Link, DeSerializersT, ValMapsApi>; /** * Static representation of the one-to-many navigation property {@link defaultValMaps} for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ DEFAULT_VAL_MAPS: Link, DeSerializersT, DefaultValMapsApi>; ALL_FIELDS: AllFields>>; }; }