• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

thorstenalpers / Finance.NET / 23104701747

15 Mar 2026 06:07AM UTC coverage: 93.634% (-0.8%) from 94.452%
23104701747

push

github

thorstenalpers
Update packages and exclude alpha vantage tests

501 of 615 branches covered (81.46%)

Branch coverage included in aggregate %.

1676 of 1710 relevant lines covered (98.01%)

7439.18 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

50.0
/src/Models/AlphaVantage/Dtos/IntradayRecordRoot.cs
1

2
using System.Collections.Generic;
3
using Newtonsoft.Json;
4

5
namespace Finance.Net.Models.AlphaVantage.Dtos;
6

7
internal record IntradayRecordRoot
8
{
9
    [JsonProperty("Meta Data")]
10
    public Dictionary<string, string>? MetaData { get; set; }
58✔
11

12
    [JsonProperty("Time Series (1min)")]
13
    public Dictionary<string, IntradayRecordItem>? TimeSeries1Min { get; set; }
×
14

15
    [JsonProperty("Time Series (5min)")]
16
    public Dictionary<string, IntradayRecordItem>? TimeSeries5Min { get; set; }
83✔
17

18
    [JsonProperty("Time Series (15min)")]
19
    public Dictionary<string, IntradayRecordItem>? TimeSeries15Min { get; set; }
3✔
20

21
    [JsonProperty("Time Series (30min)")]
22
    public Dictionary<string, IntradayRecordItem>? TimeSeries30Min { get; set; }
×
23

24
    [JsonProperty("Time Series (60min)")]
25
    public Dictionary<string, IntradayRecordItem>? TimeSeries60Min { get; set; }
×
26
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc