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