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