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