import { DefaultDeSerializers, DeSerializers, GetAllRequestBuilder, GetByKeyRequestBuilder, CreateRequestBuilder, UpdateRequestBuilder, DeleteRequestBuilder, DeserializedType, RequestBuilder } from '@sap-cloud-sdk/odata-v2'; import { BatchCharcValue } from './BatchCharcValue'; /** * Request builder class for operations supported on the [[BatchCharcValue]] entity. */ export declare class BatchCharcValueRequestBuilder extends RequestBuilder, T> { /** * Returns a request builder for retrieving one `BatchCharcValue` entity based on its keys. * @param material Key property. See [[BatchCharcValue.material]]. * @param batchIdentifyingPlant Key property. See [[BatchCharcValue.batchIdentifyingPlant]]. * @param batch Key property. See [[BatchCharcValue.batch]]. * @param charcInternalId Key property. See [[BatchCharcValue.charcInternalId]]. * @param charcValuePositionNumber Key property. See [[BatchCharcValue.charcValuePositionNumber]]. * @returns A request builder for creating requests to retrieve one `BatchCharcValue` entity based on its keys. */ getByKey(material: DeserializedType, batchIdentifyingPlant: DeserializedType, batch: DeserializedType, charcInternalId: DeserializedType, charcValuePositionNumber: DeserializedType): GetByKeyRequestBuilder, T>; /** * Returns a request builder for querying all `BatchCharcValue` entities. * @returns A request builder for creating requests to retrieve all `BatchCharcValue` entities. */ getAll(): GetAllRequestBuilder, T>; /** * Returns a request builder for creating a `BatchCharcValue` entity. * @param entity The entity to be created * @returns A request builder for creating requests that create an entity of type `BatchCharcValue`. */ create(entity: BatchCharcValue): CreateRequestBuilder, T>; /** * Returns a request builder for updating an entity of type `BatchCharcValue`. * @param entity The entity to be updated * @returns A request builder for creating requests that update an entity of type `BatchCharcValue`. */ update(entity: BatchCharcValue): UpdateRequestBuilder, T>; /** * Returns a request builder for deleting an entity of type `BatchCharcValue`. * @param material Key property. See [[BatchCharcValue.material]]. * @param batchIdentifyingPlant Key property. See [[BatchCharcValue.batchIdentifyingPlant]]. * @param batch Key property. See [[BatchCharcValue.batch]]. * @param charcInternalId Key property. See [[BatchCharcValue.charcInternalId]]. * @param charcValuePositionNumber Key property. See [[BatchCharcValue.charcValuePositionNumber]]. * @returns A request builder for creating requests that delete an entity of type `BatchCharcValue`. */ delete(material: string, batchIdentifyingPlant: string, batch: string, charcInternalId: string, charcValuePositionNumber: string): DeleteRequestBuilder, T>; /** * Returns a request builder for deleting an entity of type `BatchCharcValue`. * @param entity Pass the entity to be deleted. * @returns A request builder for creating requests that delete an entity of type `BatchCharcValue` by taking the entity as a parameter. */ delete(entity: BatchCharcValue): DeleteRequestBuilder, T>; } //# sourceMappingURL=BatchCharcValueRequestBuilder.d.ts.map