import { type UpdateShippingBoxMetadataCommandRequest } 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/warehouseassistant/shipping-boxes/update */ export interface UpdateRequestBuilder extends BaseRequestBuilder { /** * Updates mutable metadata of an existing shipping box. TypeId is immutable (Rule SB-3). * @param body Updates mutable metadata of an existing shipping box. TypeId is immutable (Rule SB-3). - Request * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} */ patch(body: UpdateShippingBoxMetadataCommandRequest, requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Updates mutable metadata of an existing shipping box. TypeId is immutable (Rule SB-3). * @param body Updates mutable metadata of an existing shipping box. TypeId is immutable (Rule SB-3). - Request * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPatchRequestInformation(body: UpdateShippingBoxMetadataCommandRequest, requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Uri template for the request builder. */ export declare const UpdateRequestBuilderUriTemplate = "{+baseurl}/v2/warehouseassistant/shipping-boxes/update"; /** * Metadata for all the requests in the request builder. */ export declare const UpdateRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map