< Summary

Information
Class: Elsa.Workflows.Api.Endpoints.WorkflowDefinitions.BulkRetract.Response
Assembly: Elsa.Workflows.Api
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Api/Endpoints/WorkflowDefinitions/BulkRetract/Models.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 6
Coverable lines: 6
Total lines: 18
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
.ctor(...)100%210%
get_Retracted()100%210%
get_AlreadyRetracted()100%210%
get_Skipped()100%210%
get_NotPublished()100%210%
get_NotFound()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Api/Endpoints/WorkflowDefinitions/BulkRetract/Models.cs

#LineLine coverage
 1namespace Elsa.Workflows.Api.Endpoints.WorkflowDefinitions.BulkRetract;
 2
 3internal class Request
 4{
 5    public ICollection<string> DefinitionIds { get; set; } = default!;
 6}
 7
 08internal class Response(ICollection<string> retracted, ICollection<string> alreadyRetracted, ICollection<string> notFoun
 9{
 010    public ICollection<string> Retracted { get; } = retracted;
 011    public ICollection<string> AlreadyRetracted { get; } = alreadyRetracted;
 012    public ICollection<string> Skipped { get; } = skipped;
 13
 14    [Obsolete("Use AlreadyRetracted instead")]
 015    public ICollection<string> NotPublished { get; } = alreadyRetracted;
 16
 017    public ICollection<string> NotFound { get; } = notFound;
 18}