From 92a3a300cc267a0669c6bbff692b62cd8d8a1e1e Mon Sep 17 00:00:00 2001 From: Scott Walker Date: Tue, 11 Feb 2025 12:54:00 +0100 Subject: [PATCH] fix: volume average should be double --- .../Model/CompanyValuation/CompanyProfileResponse.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FinancialModelingPrepApi/Model/CompanyValuation/CompanyProfileResponse.cs b/FinancialModelingPrepApi/Model/CompanyValuation/CompanyProfileResponse.cs index 15e2df6..4c44c14 100644 --- a/FinancialModelingPrepApi/Model/CompanyValuation/CompanyProfileResponse.cs +++ b/FinancialModelingPrepApi/Model/CompanyValuation/CompanyProfileResponse.cs @@ -14,7 +14,7 @@ public class CompanyProfileResponse public double Beta { get; set; } [JsonPropertyName("volAvg")] - public int VolAvg { get; set; } + public double VolAvg { get; set; } [JsonPropertyName("mktCap")] public long MktCap { get; set; }