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