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