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