Skip to content

Commit 0d008d8

Browse files
committed
Make BS properties nullable for ticker: XOM
1 parent 2f4afcd commit 0d008d8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

FinancialModelingPrepApi/Model/CompanyValuation/BalanceSheetResponse.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class BalanceSheetResponse
4141
public double NetReceivables { get; set; }
4242

4343
[JsonPropertyName("inventory")]
44-
public double Inventory { get; set; }
44+
public double? Inventory { get; set; }
4545

4646
[JsonPropertyName("otherCurrentAssets")]
4747
public double OtherCurrentAssets { get; set; }
@@ -53,7 +53,7 @@ public class BalanceSheetResponse
5353
public double PropertyPlantEquipmentNet { get; set; }
5454

5555
[JsonPropertyName("goodwill")]
56-
public double Goodwill { get; set; }
56+
public double? Goodwill { get; set; }
5757

5858
[JsonPropertyName("intangibleAssets")]
5959
public double? IntangibleAssets { get; set; }
@@ -65,10 +65,10 @@ public class BalanceSheetResponse
6565
public double? LongTermInvestments { get; set; }
6666

6767
[JsonPropertyName("taxAssets")]
68-
public double TaxAssets { get; set; }
68+
public double? TaxAssets { get; set; }
6969

7070
[JsonPropertyName("otherNonCurrentAssets")]
71-
public double OtherNonCurrentAssets { get; set; }
71+
public double? OtherNonCurrentAssets { get; set; }
7272

7373
[JsonPropertyName("totalNonCurrentAssets")]
7474
public double TotalNonCurrentAssets { get; set; }
@@ -80,7 +80,7 @@ public class BalanceSheetResponse
8080
public double TotalAssets { get; set; }
8181

8282
[JsonPropertyName("accountPayables")]
83-
public double AccountPayables { get; set; }
83+
public double? AccountPayables { get; set; }
8484

8585
[JsonPropertyName("shortTermDebt")]
8686
public double ShortTermDebt { get; set; }
@@ -89,7 +89,7 @@ public class BalanceSheetResponse
8989
public double? TaxPayables { get; set; }
9090

9191
[JsonPropertyName("deferredRevenue")]
92-
public double DeferredRevenue { get; set; }
92+
public double? DeferredRevenue { get; set; }
9393

9494
[JsonPropertyName("otherCurrentLiabilities")]
9595
public double OtherCurrentLiabilities { get; set; }
@@ -101,7 +101,7 @@ public class BalanceSheetResponse
101101
public double LongTermDebt { get; set; }
102102

103103
[JsonPropertyName("deferredRevenueNonCurrent")]
104-
public double DeferredRevenueNonCurrent { get; set; }
104+
public double? DeferredRevenueNonCurrent { get; set; }
105105

106106
[JsonPropertyName("deferredTaxLiabilitiesNonCurrent")]
107107
public double? DeferredTaxLiabilitiesNonCurrent { get; set; }

0 commit comments

Comments
 (0)