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