< Summary

Information
Class: Elsa.Workflows.Api.Endpoints.ActivityExecutions.GetCallStack.Response
Assembly: Elsa.Workflows.Api
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Api/Endpoints/ActivityExecutions/GetCallStack/Response.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_ActivityExecutionId()100%210%
get_Items()100%210%
get_TotalCount()100%210%

File(s)

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

#LineLine coverage
 1using Elsa.Workflows.Runtime.Entities;
 2
 3namespace Elsa.Workflows.Api.Endpoints.ActivityExecutions.GetCallStack;
 4
 5/// <summary>
 6/// Response containing the call stack for an activity execution with pagination support.
 7/// </summary>
 8public class Response
 9{
 10    /// <summary>
 11    /// The ID of the activity execution that was requested.
 12    /// </summary>
 013    public string ActivityExecutionId { get; set; } = null!;
 14
 15    /// <summary>
 16    /// The activity execution records in the call stack (ordered from root to current activity).
 17    /// This may be a subset if pagination is applied.
 18    /// </summary>
 019    public ICollection<ActivityExecutionRecord> Items { get; set; } = new List<ActivityExecutionRecord>();
 20
 21    /// <summary>
 22    /// The total number of items in the full call stack chain.
 23    /// </summary>
 024    public long TotalCount { get; set; }
 25}