@@ -32,7 +32,7 @@ public class BalanceSheetResponse
32
32
public double CashAndCashEquivalents { get ; set ; }
33
33
34
34
[ JsonPropertyName ( "shortTermInvestments" ) ]
35
- public double ShortTermInvestments { get ; set ; }
35
+ public double ? ShortTermInvestments { get ; set ; }
36
36
37
37
[ JsonPropertyName ( "cashAndShortTermInvestments" ) ]
38
38
public double CashAndShortTermInvestments { get ; set ; }
@@ -56,13 +56,13 @@ public class BalanceSheetResponse
56
56
public double Goodwill { get ; set ; }
57
57
58
58
[ JsonPropertyName ( "intangibleAssets" ) ]
59
- public double IntangibleAssets { get ; set ; }
59
+ public double ? IntangibleAssets { get ; set ; }
60
60
61
61
[ JsonPropertyName ( "goodwillAndIntangibleAssets" ) ]
62
62
public double GoodwillAndIntangibleAssets { get ; set ; }
63
63
64
64
[ JsonPropertyName ( "longTermInvestments" ) ]
65
- public double LongTermInvestments { get ; set ; }
65
+ public double ? LongTermInvestments { get ; set ; }
66
66
67
67
[ JsonPropertyName ( "taxAssets" ) ]
68
68
public double TaxAssets { get ; set ; }
@@ -86,7 +86,7 @@ public class BalanceSheetResponse
86
86
public double ShortTermDebt { get ; set ; }
87
87
88
88
[ JsonPropertyName ( "taxPayables" ) ]
89
- public double TaxPayables { get ; set ; }
89
+ public double ? TaxPayables { get ; set ; }
90
90
91
91
[ JsonPropertyName ( "deferredRevenue" ) ]
92
92
public double DeferredRevenue { get ; set ; }
@@ -104,7 +104,7 @@ public class BalanceSheetResponse
104
104
public double DeferredRevenueNonCurrent { get ; set ; }
105
105
106
106
[ JsonPropertyName ( "deferredTaxLiabilitiesNonCurrent" ) ]
107
- public double DeferredTaxLiabilitiesNonCurrent { get ; set ; }
107
+ public double ? DeferredTaxLiabilitiesNonCurrent { get ; set ; }
108
108
109
109
[ JsonPropertyName ( "otherNonCurrentLiabilities" ) ]
110
110
public double OtherNonCurrentLiabilities { get ; set ; }
@@ -125,13 +125,13 @@ public class BalanceSheetResponse
125
125
public double PreferredStock { get ; set ; }
126
126
127
127
[ JsonPropertyName ( "commonStock" ) ]
128
- public double CommonStock { get ; set ; }
128
+ public double ? CommonStock { get ; set ; }
129
129
130
130
[ JsonPropertyName ( "retainedEarnings" ) ]
131
- public double RetainedEarnings { get ; set ; }
131
+ public double ? RetainedEarnings { get ; set ; }
132
132
133
133
[ JsonPropertyName ( "accumulatedOtherComprehensiveIncomeLoss" ) ]
134
- public double AccumulatedOtherComprehensiveIncomeLoss { get ; set ; }
134
+ public double ? AccumulatedOtherComprehensiveIncomeLoss { get ; set ; }
135
135
136
136
[ JsonPropertyName ( "othertotalStockholdersEquity" ) ]
137
137
public double ? OthertotalStockholdersEquity { get ; set ; }
@@ -152,7 +152,7 @@ public class BalanceSheetResponse
152
152
public double TotalLiabilitiesAndTotalEquity { get ; set ; }
153
153
154
154
[ JsonPropertyName ( "totalInvestments" ) ]
155
- public double TotalInvestments { get ; set ; }
155
+ public double ? TotalInvestments { get ; set ; }
156
156
157
157
[ JsonPropertyName ( "totalDebt" ) ]
158
158
public double TotalDebt { get ; set ; }
0 commit comments