From 7a1839eae4eb8ed16e974ffad4b391d8b2920a20 Mon Sep 17 00:00:00 2001 From: Scott Walker Date: Sat, 22 Feb 2025 23:31:06 +0100 Subject: [PATCH] feat: add calendar year to key metrics response --- .../Model/CompanyValuation/KeyMetricsResponse.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/FinancialModelingPrepApi/Model/CompanyValuation/KeyMetricsResponse.cs b/FinancialModelingPrepApi/Model/CompanyValuation/KeyMetricsResponse.cs index 5d3e13b..3c87510 100644 --- a/FinancialModelingPrepApi/Model/CompanyValuation/KeyMetricsResponse.cs +++ b/FinancialModelingPrepApi/Model/CompanyValuation/KeyMetricsResponse.cs @@ -9,6 +9,9 @@ public class KeyMetricsResponse [JsonPropertyName("date")] public string Date { get; set; } + + [JsonPropertyName("calendarYear")] + public string CalendarYear { get; set; } [JsonPropertyName("period")] public string Period { get; set; }