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