< Summary

Information
Class: Elsa.Workflows.Api.Endpoints.ActivityExecutions.GetCallStack.Request
Assembly: Elsa.Workflows.Api
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Api/Endpoints/ActivityExecutions/GetCallStack/Request.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 25
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_IncludeCrossWorkflowChain()100%210%
get_Skip()100%210%
get_Take()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Api/Endpoints/ActivityExecutions/GetCallStack/Request.cs

#LineLine coverage
 1namespace Elsa.Workflows.Api.Endpoints.ActivityExecutions.GetCallStack;
 2
 3/// <summary>
 4/// Request for retrieving the call stack of an activity execution.
 5/// </summary>
 6public class Request
 7{
 8    /// <summary>
 9    /// If true (default), includes parent workflow activities across workflow boundaries.
 10    /// If false, stops at workflow boundaries.
 11    /// </summary>
 012    public bool? IncludeCrossWorkflowChain { get; set; }
 13
 14    /// <summary>
 15    /// The number of items to skip (for pagination).
 16    /// Applied after ordering from root to leaf.
 17    /// </summary>
 018    public int? Skip { get; set; }
 19
 20    /// <summary>
 21    /// The maximum number of items to return (for pagination).
 22    /// Recommended maximum: 100.
 23    /// </summary>
 024    public int? Take { get; set; }
 25}