< Summary

Information
Class: Elsa.Api.Client.Resources.Alterations.Responses.GetAlterationPlanResponse
Assembly: Elsa.Api.Client
File(s): /home/runner/work/elsa-core/elsa-core/src/clients/Elsa.Api.Client/Resources/Alterations/Responses/GetAlterationPlanResponse.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 19
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_Plan()100%210%
get_Jobs()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/clients/Elsa.Api.Client/Resources/Alterations/Responses/GetAlterationPlanResponse.cs

#LineLine coverage
 1using Elsa.Api.Client.Resources.Alterations.Models;
 2
 3namespace Elsa.Api.Client.Resources.Alterations.Responses;
 4
 5/// <summary>
 6/// The response from the "Get" alteration plan endpoint
 7/// </summary>
 8public class GetAlterationPlanResponse
 9{
 10    /// <summary>
 11    /// The alteration plan mathching the provided ID
 12    /// </summary>
 013    public AlterationPlan Plan { get; set; } = new();
 14
 15    /// <summary>
 16    /// The list of jobs that exist for that AlterationPlan
 17    /// </summary>
 018    public ICollection<AlterationJob> Jobs { get; set; } = new List<AlterationJob>();
 19}

Methods/Properties

get_Plan()
get_Jobs()