< Summary

Information
Class: Elsa.Api.Client.Resources.WorkflowInstances.Requests.JournalFilter
Assembly: Elsa.Api.Client
File(s): /home/runner/work/elsa-core/elsa-core/src/clients/Elsa.Api.Client/Resources/WorkflowInstances/Requests/JournalFilter.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 4
Coverable lines: 4
Total lines: 27
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_ActivityIds()100%210%
get_ActivityNodeIds()100%210%
get_ExcludedActivityTypes()100%210%
get_EventNames()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/clients/Elsa.Api.Client/Resources/WorkflowInstances/Requests/JournalFilter.cs

#LineLine coverage
 1namespace Elsa.Api.Client.Resources.WorkflowInstances.Requests;
 2
 3/// <summary>
 4/// Represents a request to list journal records.
 5/// </summary>
 6public class JournalFilter
 7{
 8    /// <summary>
 9    /// Gets or sets the activity IDs to filter by.
 10    /// </summary>
 011    public ICollection<string>? ActivityIds { get; set; }
 12
 13    /// <summary>
 14    /// Gets or sets the activity node IDs to filter by.
 15    /// </summary>
 016    public ICollection<string>? ActivityNodeIds { get; set; }
 17
 18    /// <summary>
 19    /// Gets or sets the activity types to filter out.
 20    /// </summary>
 021    public ICollection<string>? ExcludedActivityTypes { get; set; }
 22
 23    /// <summary>
 24    /// Gets or sets the event types to filter by.
 25    /// </summary>
 026    public ICollection<string>? EventNames { get; set; }
 27}