import { type UnlockBinLocationForAvailableStockCommandRequest } 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/bin-locations/unlock-for-stock */ export interface UnlockForStockRequestBuilder extends BaseRequestBuilder { /** * Unlocks a bin location for available stock, allowing it to be used for stock allocation. * @param body Unlocks a bin location for available stock, allowing it to be used for stock allocation. - Request * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} */ post(body: UnlockBinLocationForAvailableStockCommandRequest, requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Unlocks a bin location for available stock, allowing it to be used for stock allocation. * @param body Unlocks a bin location for available stock, allowing it to be used for stock allocation. - Request * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPostRequestInformation(body: UnlockBinLocationForAvailableStockCommandRequest, requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Uri template for the request builder. */ export declare const UnlockForStockRequestBuilderUriTemplate = "{+baseurl}/v2/warehouseassistant/bin-locations/unlock-for-stock"; /** * Metadata for all the requests in the request builder. */ export declare const UnlockForStockRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map