fix: correct usage response field names — five_hour/seven_day not claude_ai_default_5h/claude_ai_default

This commit is contained in:
SuperDooper
2026-05-08 16:48:46 +02:00
parent 2dcea91a63
commit 78e9004624
+2 -2
View File
@@ -21,8 +21,8 @@ public class AgentLimit
public class UsageResponse
{
[JsonPropertyName("claude_ai_default_5h")] public WindowData? FiveHour { get; set; }
[JsonPropertyName("claude_ai_default")] public WindowData? SevenDay { get; set; }
[JsonPropertyName("five_hour")] public WindowData? FiveHour { get; set; }
[JsonPropertyName("seven_day")] public WindowData? SevenDay { get; set; }
}
public class WindowData