import { type WithWorkflowEventItemRequestBuilder } from './item/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /v2/deliveryNotes/{deliveryNoteId}/workflow */ export interface WorkflowRequestBuilder extends BaseRequestBuilder { /** * Gets an item from the JtlErpApi.v2.deliveryNotes.item.workflow.item collection * @param workflowEventId The id of the Event for that the manual workflow event should be started. * @returns {WithWorkflowEventItemRequestBuilder} */ byWorkflowEventId(workflowEventId: number): WithWorkflowEventItemRequestBuilder; } /** * Uri template for the request builder. */ export declare const WorkflowRequestBuilderUriTemplate = "{+baseurl}/v2/deliveryNotes/{deliveryNoteId}/workflow"; /** * Metadata for all the navigation properties in the request builder. */ export declare const WorkflowRequestBuilderNavigationMetadata: Record, NavigationMetadata>; //# sourceMappingURL=index.d.ts.map