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