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