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