@@ -11,58 +11,58 @@ public class AnalystEstimateItem
11
11
public string Date { get ; set ; }
12
12
13
13
[ JsonPropertyName ( "estimatedRevenueLow" ) ]
14
- public double EstimatedRevenueLow { get ; set ; }
14
+ public double ? EstimatedRevenueLow { get ; set ; }
15
15
16
16
[ JsonPropertyName ( "estimatedRevenueHigh" ) ]
17
- public double EstimatedRevenueHigh { get ; set ; }
17
+ public double ? EstimatedRevenueHigh { get ; set ; }
18
18
19
19
[ JsonPropertyName ( "estimatedRevenueAvg" ) ]
20
- public double EstimatedRevenueAvg { get ; set ; }
20
+ public double ? EstimatedRevenueAvg { get ; set ; }
21
21
22
22
[ JsonPropertyName ( "estimatedEbitdaLow" ) ]
23
- public double EstimatedEbitdaLow { get ; set ; }
23
+ public double ? EstimatedEbitdaLow { get ; set ; }
24
24
25
25
[ JsonPropertyName ( "estimatedEbitdaHigh" ) ]
26
- public double EstimatedEbitdaHigh { get ; set ; }
26
+ public double ? EstimatedEbitdaHigh { get ; set ; }
27
27
28
28
[ JsonPropertyName ( "estimatedEbitdaAvg" ) ]
29
- public double EstimatedEbitdaAvg { get ; set ; }
29
+ public double ? EstimatedEbitdaAvg { get ; set ; }
30
30
31
31
[ JsonPropertyName ( "estimatedEbitLow" ) ]
32
- public double EstimatedEbitLow { get ; set ; }
32
+ public double ? EstimatedEbitLow { get ; set ; }
33
33
34
34
[ JsonPropertyName ( "estimatedEbitHigh" ) ]
35
- public double EstimatedEbitHigh { get ; set ; }
35
+ public double ? EstimatedEbitHigh { get ; set ; }
36
36
37
37
[ JsonPropertyName ( "estimatedEbitAvg" ) ]
38
- public double EstimatedEbitAvg { get ; set ; }
38
+ public double ? EstimatedEbitAvg { get ; set ; }
39
39
40
40
[ JsonPropertyName ( "estimatedNetIncomeLow" ) ]
41
- public double EstimatedNetIncomeLow { get ; set ; }
41
+ public double ? EstimatedNetIncomeLow { get ; set ; }
42
42
43
43
[ JsonPropertyName ( "estimatedNetIncomeHigh" ) ]
44
- public double EstimatedNetIncomeHigh { get ; set ; }
44
+ public double ? EstimatedNetIncomeHigh { get ; set ; }
45
45
46
46
[ JsonPropertyName ( "estimatedNetIncomeAvg" ) ]
47
- public double EstimatedNetIncomeAvg { get ; set ; }
47
+ public double ? EstimatedNetIncomeAvg { get ; set ; }
48
48
49
49
[ JsonPropertyName ( "estimatedSgaExpenseLow" ) ]
50
- public double EstimatedSgaExpenseLow { get ; set ; }
50
+ public double ? EstimatedSgaExpenseLow { get ; set ; }
51
51
52
52
[ JsonPropertyName ( "estimatedSgaExpenseHigh" ) ]
53
- public double EstimatedSgaExpenseHigh { get ; set ; }
53
+ public double ? EstimatedSgaExpenseHigh { get ; set ; }
54
54
55
55
[ JsonPropertyName ( "estimatedSgaExpenseAvg" ) ]
56
- public double EstimatedSgaExpenseAvg { get ; set ; }
56
+ public double ? EstimatedSgaExpenseAvg { get ; set ; }
57
57
58
58
[ JsonPropertyName ( "estimatedEpsAvg" ) ]
59
- public double EstimatedEpsAvg { get ; set ; }
59
+ public double ? EstimatedEpsAvg { get ; set ; }
60
60
61
61
[ JsonPropertyName ( "estimatedEpsHigh" ) ]
62
- public double EstimatedEpsHigh { get ; set ; }
62
+ public double ? EstimatedEpsHigh { get ; set ; }
63
63
64
64
[ JsonPropertyName ( "estimatedEpsLow" ) ]
65
- public double EstimatedEpsLow { get ; set ; }
65
+ public double ? EstimatedEpsLow { get ; set ; }
66
66
67
67
[ JsonPropertyName ( "numberAnalystEstimatedRevenue" ) ]
68
68
public int NumberAnalystEstimatedRevenue { get ; set ; }
0 commit comments