@@ -41,7 +41,7 @@ public class BalanceSheetResponse
41
41
public double NetReceivables { get ; set ; }
42
42
43
43
[ JsonPropertyName ( "inventory" ) ]
44
- public double Inventory { get ; set ; }
44
+ public double ? Inventory { get ; set ; }
45
45
46
46
[ JsonPropertyName ( "otherCurrentAssets" ) ]
47
47
public double OtherCurrentAssets { get ; set ; }
@@ -53,7 +53,7 @@ public class BalanceSheetResponse
53
53
public double PropertyPlantEquipmentNet { get ; set ; }
54
54
55
55
[ JsonPropertyName ( "goodwill" ) ]
56
- public double Goodwill { get ; set ; }
56
+ public double ? Goodwill { get ; set ; }
57
57
58
58
[ JsonPropertyName ( "intangibleAssets" ) ]
59
59
public double ? IntangibleAssets { get ; set ; }
@@ -65,10 +65,10 @@ public class BalanceSheetResponse
65
65
public double ? LongTermInvestments { get ; set ; }
66
66
67
67
[ JsonPropertyName ( "taxAssets" ) ]
68
- public double TaxAssets { get ; set ; }
68
+ public double ? TaxAssets { get ; set ; }
69
69
70
70
[ JsonPropertyName ( "otherNonCurrentAssets" ) ]
71
- public double OtherNonCurrentAssets { get ; set ; }
71
+ public double ? OtherNonCurrentAssets { get ; set ; }
72
72
73
73
[ JsonPropertyName ( "totalNonCurrentAssets" ) ]
74
74
public double TotalNonCurrentAssets { get ; set ; }
@@ -80,7 +80,7 @@ public class BalanceSheetResponse
80
80
public double TotalAssets { get ; set ; }
81
81
82
82
[ JsonPropertyName ( "accountPayables" ) ]
83
- public double AccountPayables { get ; set ; }
83
+ public double ? AccountPayables { get ; set ; }
84
84
85
85
[ JsonPropertyName ( "shortTermDebt" ) ]
86
86
public double ShortTermDebt { get ; set ; }
@@ -89,7 +89,7 @@ public class BalanceSheetResponse
89
89
public double ? TaxPayables { get ; set ; }
90
90
91
91
[ JsonPropertyName ( "deferredRevenue" ) ]
92
- public double DeferredRevenue { get ; set ; }
92
+ public double ? DeferredRevenue { get ; set ; }
93
93
94
94
[ JsonPropertyName ( "otherCurrentLiabilities" ) ]
95
95
public double OtherCurrentLiabilities { get ; set ; }
@@ -101,7 +101,7 @@ public class BalanceSheetResponse
101
101
public double LongTermDebt { get ; set ; }
102
102
103
103
[ JsonPropertyName ( "deferredRevenueNonCurrent" ) ]
104
- public double DeferredRevenueNonCurrent { get ; set ; }
104
+ public double ? DeferredRevenueNonCurrent { get ; set ; }
105
105
106
106
[ JsonPropertyName ( "deferredTaxLiabilitiesNonCurrent" ) ]
107
107
public double ? DeferredTaxLiabilitiesNonCurrent { get ; set ; }
0 commit comments