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