@@ -11,58 +11,58 @@ public class AnalystEstimateItem
1111 public string Date { get ; set ; }
1212
1313 [ JsonPropertyName ( "estimatedRevenueLow" ) ]
14- public double EstimatedRevenueLow { get ; set ; }
14+ public double ? EstimatedRevenueLow { get ; set ; }
1515
1616 [ JsonPropertyName ( "estimatedRevenueHigh" ) ]
17- public double EstimatedRevenueHigh { get ; set ; }
17+ public double ? EstimatedRevenueHigh { get ; set ; }
1818
1919 [ JsonPropertyName ( "estimatedRevenueAvg" ) ]
20- public double EstimatedRevenueAvg { get ; set ; }
20+ public double ? EstimatedRevenueAvg { get ; set ; }
2121
2222 [ JsonPropertyName ( "estimatedEbitdaLow" ) ]
23- public double EstimatedEbitdaLow { get ; set ; }
23+ public double ? EstimatedEbitdaLow { get ; set ; }
2424
2525 [ JsonPropertyName ( "estimatedEbitdaHigh" ) ]
26- public double EstimatedEbitdaHigh { get ; set ; }
26+ public double ? EstimatedEbitdaHigh { get ; set ; }
2727
2828 [ JsonPropertyName ( "estimatedEbitdaAvg" ) ]
29- public double EstimatedEbitdaAvg { get ; set ; }
29+ public double ? EstimatedEbitdaAvg { get ; set ; }
3030
3131 [ JsonPropertyName ( "estimatedEbitLow" ) ]
32- public double EstimatedEbitLow { get ; set ; }
32+ public double ? EstimatedEbitLow { get ; set ; }
3333
3434 [ JsonPropertyName ( "estimatedEbitHigh" ) ]
35- public double EstimatedEbitHigh { get ; set ; }
35+ public double ? EstimatedEbitHigh { get ; set ; }
3636
3737 [ JsonPropertyName ( "estimatedEbitAvg" ) ]
38- public double EstimatedEbitAvg { get ; set ; }
38+ public double ? EstimatedEbitAvg { get ; set ; }
3939
4040 [ JsonPropertyName ( "estimatedNetIncomeLow" ) ]
41- public double EstimatedNetIncomeLow { get ; set ; }
41+ public double ? EstimatedNetIncomeLow { get ; set ; }
4242
4343 [ JsonPropertyName ( "estimatedNetIncomeHigh" ) ]
44- public double EstimatedNetIncomeHigh { get ; set ; }
44+ public double ? EstimatedNetIncomeHigh { get ; set ; }
4545
4646 [ JsonPropertyName ( "estimatedNetIncomeAvg" ) ]
47- public double EstimatedNetIncomeAvg { get ; set ; }
47+ public double ? EstimatedNetIncomeAvg { get ; set ; }
4848
4949 [ JsonPropertyName ( "estimatedSgaExpenseLow" ) ]
50- public double EstimatedSgaExpenseLow { get ; set ; }
50+ public double ? EstimatedSgaExpenseLow { get ; set ; }
5151
5252 [ JsonPropertyName ( "estimatedSgaExpenseHigh" ) ]
53- public double EstimatedSgaExpenseHigh { get ; set ; }
53+ public double ? EstimatedSgaExpenseHigh { get ; set ; }
5454
5555 [ JsonPropertyName ( "estimatedSgaExpenseAvg" ) ]
56- public double EstimatedSgaExpenseAvg { get ; set ; }
56+ public double ? EstimatedSgaExpenseAvg { get ; set ; }
5757
5858 [ JsonPropertyName ( "estimatedEpsAvg" ) ]
59- public double EstimatedEpsAvg { get ; set ; }
59+ public double ? EstimatedEpsAvg { get ; set ; }
6060
6161 [ JsonPropertyName ( "estimatedEpsHigh" ) ]
62- public double EstimatedEpsHigh { get ; set ; }
62+ public double ? EstimatedEpsHigh { get ; set ; }
6363
6464 [ JsonPropertyName ( "estimatedEpsLow" ) ]
65- public double EstimatedEpsLow { get ; set ; }
65+ public double ? EstimatedEpsLow { get ; set ; }
6666
6767 [ JsonPropertyName ( "numberAnalystEstimatedRevenue" ) ]
6868 public int NumberAnalystEstimatedRevenue { get ; set ; }
0 commit comments