< Summary

Information
Class: Elsa.Workflows.Runtime.ResumeBookmarkRequest
Assembly: Elsa.Workflows.Runtime
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Runtime/Requests/ResumeBookmarkRequest.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 6
Coverable lines: 6
Total lines: 26
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_WorkflowInstanceId()100%210%
get_BookmarkId()100%210%
get_ActivityHandle()100%210%
get_ActivityInstanceId()100%210%
get_Properties()100%210%
get_Input()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Runtime/Requests/ResumeBookmarkRequest.cs

#LineLine coverage
 1using Elsa.Workflows.Models;
 2
 3namespace Elsa.Workflows.Runtime;
 4
 5public class ResumeBookmarkRequest
 6{
 07    public string WorkflowInstanceId { get; set; } = null!;
 8
 9    /// The ID of the bookmark that triggered the workflow instance, if any.
 010    public string BookmarkId { get; set; } = null!;
 11
 12    /// The handle of the activity to schedule, if any.
 13    [Obsolete("Use ActivityInstanceId instead")]
 014    public ActivityHandle? ActivityHandle { get; set; }
 15
 16    /// <summary>
 17    /// The ID of the activity instance to resume, if any.
 18    /// </summary>
 019    public string? ActivityInstanceId { get; set; }
 20
 21    /// Any additional properties to associate with the workflow instance.
 022    public IDictionary<string, object>? Properties { get; set; }
 23
 24    /// The input to the workflow instance, if any.
 025    public IDictionary<string, object>? Input { get; set; }
 26}