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