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