< Summary

Information
Class: NexusLabs.Needlr.AgentFramework.Langfuse.LangfuseScoreConfigsResponse
Assembly: NexusLabs.Needlr.AgentFramework.Langfuse
File(s): /home/runner/work/needlr/needlr/src/NexusLabs.Needlr.AgentFramework.Langfuse/LangfuseScoreConfigsResponse.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 11
Line coverage: 100%
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_Data()100%11100%
get_Meta()100%11100%

File(s)

/home/runner/work/needlr/needlr/src/NexusLabs.Needlr.AgentFramework.Langfuse/LangfuseScoreConfigsResponse.cs

#LineLine coverage
 1namespace NexusLabs.Needlr.AgentFramework.Langfuse;
 2
 3/// <summary>Response shape for <c>GET /api/public/score-configs</c>.</summary>
 4internal sealed record LangfuseScoreConfigsResponse
 5{
 6    /// <summary>Gets the score configs on the current page.</summary>
 97    public IReadOnlyList<LangfuseScoreConfigSummary> Data { get; init; } = [];
 8
 9    /// <summary>Gets the pagination metadata.</summary>
 310    public LangfusePaginationMeta? Meta { get; init; }
 11}

Methods/Properties

get_Data()
get_Meta()