< Summary

Information
Class: Elsa.Api.Client.Resources.ExternalAuthentication.IdentityLinks.Models.ExternalIdentityLink
Assembly: Elsa.Api.Client
File(s): /home/runner/work/elsa-core/elsa-core/src/clients/Elsa.Api.Client/Resources/ExternalAuthentication/IdentityLinks/Models/ExternalIdentityLink.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 8
Coverable lines: 8
Total lines: 13
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_Id()100%210%
get_UserId()100%210%
get_ConnectionKey()100%210%
get_Issuer()100%210%
get_SubjectHint()100%210%
get_CreatedAt()100%210%
get_LastSignedInAt()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/clients/Elsa.Api.Client/Resources/ExternalAuthentication/IdentityLinks/Models/ExternalIdentityLink.cs

#LineLine coverage
 1namespace Elsa.Api.Client.Resources.ExternalAuthentication.IdentityLinks.Models;
 2
 3/// <summary>
 4/// Safe metadata for an external identity linked to an Elsa user.
 5/// </summary>
 06public record ExternalIdentityLink(
 07    string Id,
 08    string UserId,
 09    string ConnectionKey,
 010    string Issuer,
 011    string? SubjectHint,
 012    DateTimeOffset CreatedAt,
 013    DateTimeOffset? LastSignedInAt);