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