import { type UpdateProductGroupsCommandRequest } from '../../../models/index.js'; import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /v2/ProductGroup/UpdateProductGroups */ export interface UpdateProductGroupsRequestBuilder extends BaseRequestBuilder { /** * Update the properties of product groups. * @param body Update the properties of product groups. - Request * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} */ patch(body: UpdateProductGroupsCommandRequest, requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Update the properties of product groups. * @param body Update the properties of product groups. - Request * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPatchRequestInformation(body: UpdateProductGroupsCommandRequest, requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Uri template for the request builder. */ export declare const UpdateProductGroupsRequestBuilderUriTemplate = "{+baseurl}/v2/ProductGroup/UpdateProductGroups"; /** * Metadata for all the requests in the request builder. */ export declare const UpdateProductGroupsRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map