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