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