import { type BillOfMaterialsItemsItemRequestBuilder } from './item/index.js'; import { type BaseRequestBuilder, type Guid, type KeysToExcludeForNavigationMetadata, type NavigationMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /v2/bill-of-materials-items */ export interface BillOfMaterialsItemsRequestBuilder extends BaseRequestBuilder { /** * Gets an item from the JtlErpApi.v2.billOfMaterialsItems.item collection * @param id Unique identifier of the item * @returns {BillOfMaterialsItemsItemRequestBuilder} */ byId(id: Guid): BillOfMaterialsItemsItemRequestBuilder; } /** * Uri template for the request builder. */ export declare const BillOfMaterialsItemsRequestBuilderUriTemplate = "{+baseurl}/v2/bill-of-materials-items"; /** * Metadata for all the navigation properties in the request builder. */ export declare const BillOfMaterialsItemsRequestBuilderNavigationMetadata: Record, NavigationMetadata>; //# sourceMappingURL=index.d.ts.map