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