< Summary - Syki

Information
Class: Syki.Shared.GetWebhookOut
Assembly: Shared
File(s): /home/runner/work/syki/syki/Shared/Features/Academic/GetWebhook/GetWebhooksOut.cs
Tag: 4_16869239191
Line coverage
0%
Covered lines: 0
Uncovered lines: 11
Coverable lines: 11
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_Id()100%210%
get_Name()100%210%
get_Url()100%210%
get_AuthenticationType()100%210%
get_CreatedAt()100%210%
get_EventsCount()100%210%
get_CallsCount()100%210%
get_Calls()100%210%
GetExamples()100%210%

File(s)

/home/runner/work/syki/syki/Shared/Features/Academic/GetWebhook/GetWebhooksOut.cs

#LineLine coverage
 1namespace Syki.Shared;
 2
 3public class GetWebhookOut
 4{
 05    public Guid Id { get; set; }
 06    public string Name { get; set; }
 07    public string Url { get; set; }
 08    public WebhookAuthenticationType AuthenticationType { get; set; }
 09    public DateTime CreatedAt { get; set; }
 010    public int EventsCount { get; set; }
 011    public int CallsCount { get; set; }
 12
 013    public List<GetWebhookCallOut> Calls { get; set; }
 14
 15    public static IEnumerable<(string, GetWebhookOut)> GetExamples() =>
 016    [
 017        ("Exemplo", new() { }),
 018    ];
 19}