Skip to content

Mark properties as nullable #141

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class BalanceSheetResponse
public double CashAndCashEquivalents { get; set; }

[JsonPropertyName("shortTermInvestments")]
public double ShortTermInvestments { get; set; }
public double? ShortTermInvestments { get; set; }

[JsonPropertyName("cashAndShortTermInvestments")]
public double CashAndShortTermInvestments { get; set; }
Expand All @@ -56,13 +56,13 @@ public class BalanceSheetResponse
public double Goodwill { get; set; }

[JsonPropertyName("intangibleAssets")]
public double IntangibleAssets { get; set; }
public double? IntangibleAssets { get; set; }

[JsonPropertyName("goodwillAndIntangibleAssets")]
public double GoodwillAndIntangibleAssets { get; set; }

[JsonPropertyName("longTermInvestments")]
public double LongTermInvestments { get; set; }
public double? LongTermInvestments { get; set; }

[JsonPropertyName("taxAssets")]
public double TaxAssets { get; set; }
Expand All @@ -86,7 +86,7 @@ public class BalanceSheetResponse
public double ShortTermDebt { get; set; }

[JsonPropertyName("taxPayables")]
public double TaxPayables { get; set; }
public double? TaxPayables { get; set; }

[JsonPropertyName("deferredRevenue")]
public double DeferredRevenue { get; set; }
Expand All @@ -104,7 +104,7 @@ public class BalanceSheetResponse
public double DeferredRevenueNonCurrent { get; set; }

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

[JsonPropertyName("otherNonCurrentLiabilities")]
public double OtherNonCurrentLiabilities { get; set; }
Expand All @@ -125,13 +125,13 @@ public class BalanceSheetResponse
public double PreferredStock { get; set; }

[JsonPropertyName("commonStock")]
public double CommonStock { get; set; }
public double? CommonStock { get; set; }

[JsonPropertyName("retainedEarnings")]
public double RetainedEarnings { get; set; }
public double? RetainedEarnings { get; set; }

[JsonPropertyName("accumulatedOtherComprehensiveIncomeLoss")]
public double AccumulatedOtherComprehensiveIncomeLoss { get; set; }
public double? AccumulatedOtherComprehensiveIncomeLoss { get; set; }

[JsonPropertyName("othertotalStockholdersEquity")]
public double? OthertotalStockholdersEquity { get; set; }
Expand All @@ -152,7 +152,7 @@ public class BalanceSheetResponse
public double TotalLiabilitiesAndTotalEquity { get; set; }

[JsonPropertyName("totalInvestments")]
public double TotalInvestments { get; set; }
public double? TotalInvestments { get; set; }

[JsonPropertyName("totalDebt")]
public double TotalDebt { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@ public class CashFlowResponse
public double ChangeInWorkingCapital { get; set; }

[JsonPropertyName("accountsReceivables")]
public double AccountsReceivables { get; set; }
public double? AccountsReceivables { get; set; }

[JsonPropertyName("inventory")]
public double Inventory { get; set; }
public double? Inventory { get; set; }

[JsonPropertyName("accountsPayables")]
public double AccountsPayables { get; set; }
public double? AccountsPayables { get; set; }

[JsonPropertyName("otherWorkingCapital")]
public double OtherWorkingCapital { get; set; }
public double? OtherWorkingCapital { get; set; }

[JsonPropertyName("otherNonCashItems")]
public double OtherNonCashItems { get; set; }
Expand All @@ -65,7 +65,7 @@ public class CashFlowResponse
public double InvestmentsInPropertyPlantAndEquipment { get; set; }

[JsonPropertyName("acquisitionsNet")]
public double AcquisitionsNet { get; set; }
public double? AcquisitionsNet { get; set; }

[JsonPropertyName("purchasesOfInvestments")]
public double PurchasesOfInvestments { get; set; }
Expand All @@ -86,13 +86,13 @@ public class CashFlowResponse
public double CommonStockIssued { get; set; }

[JsonPropertyName("commonStockRepurchased")]
public double CommonStockRepurchased { get; set; }
public double? CommonStockRepurchased { get; set; }

[JsonPropertyName("dividendsPaid")]
public double DividendsPaid { get; set; }
public double? DividendsPaid { get; set; }

[JsonPropertyName("otherFinancingActivites")]
public double OtherFinancingActivites { get; set; }
public double? OtherFinancingActivites { get; set; }

[JsonPropertyName("netCashUsedProvidedByFinancingActivities")]
public double NetCashUsedProvidedByFinancingActivities { get; set; }
Expand Down
Loading