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