import { type AssignShippingBoxToLocationCommandRequest } 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/assign-location */ export interface AssignLocationRequestBuilder extends BaseRequestBuilder { /** * Reassigns a shipping box to a different bin location (Rule SB-5). * @param body Reassigns a shipping box to a different bin location (Rule SB-5). - Request * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} */ post(body: AssignShippingBoxToLocationCommandRequest, requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Reassigns a shipping box to a different bin location (Rule SB-5). * @param body Reassigns a shipping box to a different bin location (Rule SB-5). - Request * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPostRequestInformation(body: AssignShippingBoxToLocationCommandRequest, requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Uri template for the request builder. */ export declare const AssignLocationRequestBuilderUriTemplate = "{+baseurl}/v2/warehouseassistant/shipping-boxes/assign-location"; /** * Metadata for all the requests in the request builder. */ export declare const AssignLocationRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map