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