@@ -38,7 +38,7 @@ public class IncomeStatementResponse
38
38
public double GrossProfit { get ; set ; }
39
39
40
40
[ JsonPropertyName ( "grossProfitRatio" ) ]
41
- public double GrossProfitRatio { get ; set ; }
41
+ public double ? GrossProfitRatio { get ; set ; }
42
42
43
43
[ JsonPropertyName ( "researchAndDevelopmentExpenses" ) ]
44
44
public double ResearchAndDevelopmentExpenses { get ; set ; }
@@ -74,13 +74,13 @@ public class IncomeStatementResponse
74
74
public double Ebitda { get ; set ; }
75
75
76
76
[ JsonPropertyName ( "ebitdaratio" ) ]
77
- public double Ebitdaratio { get ; set ; }
77
+ public double ? Ebitdaratio { get ; set ; }
78
78
79
79
[ JsonPropertyName ( "operatingIncome" ) ]
80
80
public double OperatingIncome { get ; set ; }
81
81
82
82
[ JsonPropertyName ( "operatingIncomeRatio" ) ]
83
- public double OperatingIncomeRatio { get ; set ; }
83
+ public double ? OperatingIncomeRatio { get ; set ; }
84
84
85
85
[ JsonPropertyName ( "totalOtherIncomeExpensesNet" ) ]
86
86
public double TotalOtherIncomeExpensesNet { get ; set ; }
@@ -89,7 +89,7 @@ public class IncomeStatementResponse
89
89
public double IncomeBeforeTax { get ; set ; }
90
90
91
91
[ JsonPropertyName ( "incomeBeforeTaxRatio" ) ]
92
- public double IncomeBeforeTaxRatio { get ; set ; }
92
+ public double ? IncomeBeforeTaxRatio { get ; set ; }
93
93
94
94
[ JsonPropertyName ( "incomeTaxExpense" ) ]
95
95
public double IncomeTaxExpense { get ; set ; }
@@ -98,7 +98,7 @@ public class IncomeStatementResponse
98
98
public double NetIncome { get ; set ; }
99
99
100
100
[ JsonPropertyName ( "netIncomeRatio" ) ]
101
- public double NetIncomeRatio { get ; set ; }
101
+ public double ? NetIncomeRatio { get ; set ; }
102
102
103
103
[ JsonPropertyName ( "eps" ) ]
104
104
public double Eps { get ; set ; }
0 commit comments