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