Skip to content

Commit

Permalink
Added fiscalYear and fiscalQuarter to BalanceSheet and IncomeStatement (
Browse files Browse the repository at this point in the history
  • Loading branch information
evancalhoun authored Jun 17, 2022
1 parent e8d054c commit 8762126
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ public class Balancesheet
{
public DateTime? reportDate { get; set; }
public DateTime? fiscalDate { get; set; }
public int fiscalQuarter { get; set; }
public int fiscalYear { get; set; }
public string currency { get; set; }
public decimal? currentCash { get; set; }
public decimal? shortTermInvestments { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ public class Income
{
public DateTime? reportDate { get; set; }
public DateTime? fiscalDate { get; set; }
public int fiscalQuarter { get; set; }
public int fiscalYear { get; set; }
public string currency { get; set; }
public decimal? totalRevenue { get; set; }
public decimal? costOfRevenue { get; set; }
Expand Down

0 comments on commit 8762126

Please sign in to comment.