Skip to content

Commit 4438a08

Browse files
committed
Make MktCap strongly typed int.
1 parent 71fef21 commit 4438a08

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

FinancialModelingPrepApi/Model/CompanyValuation/CompanyProfileResponse.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class CompanyProfileResponse
1717
public int VolAvg { get; set; }
1818

1919
[JsonPropertyName("mktCap")]
20-
public object MktCap { get; set; }
20+
public int MktCap { get; set; }
2121

2222
[JsonPropertyName("lastDiv")]
2323
public double LastDiv { get; set; }
@@ -103,13 +103,13 @@ public class CompanyProfileResponse
103103
[JsonPropertyName("isEtf")]
104104
public bool IsEtf { get; set; }
105105

106+
[JsonPropertyName("isActivelyTrading")]
107+
public bool IsActivelyTrading { get; set; }
108+
106109
[JsonPropertyName("isAdr")]
107110
public bool IsAdr { get; set; }
108111

109112
[JsonPropertyName("isFund")]
110113
public bool IsFund { get; set; }
111-
112-
[JsonPropertyName("isActivelyTrading")]
113-
public bool IsActivelyTrading { get; set; }
114114
}
115115
}

0 commit comments

Comments
 (0)