module LiteXBRL::TDnet::ResultsForecastAttribute

Attributes

change_forecast_net_income[RW]
change_forecast_net_sales[RW]
change_forecast_operating_income[RW]
change_forecast_ordinary_income[RW]
code[RW]
consolidation[RW]
forecast_net_income[RW]
forecast_net_income_per_share[RW]
forecast_net_sales[RW]
forecast_operating_income[RW]
forecast_ordinary_income[RW]
month[RW]
previous_forecast_net_income[RW]
previous_forecast_net_income_per_share[RW]
previous_forecast_net_sales[RW]
previous_forecast_operating_income[RW]
previous_forecast_ordinary_income[RW]
quarter[RW]
year[RW]

Public Instance Methods

attributes() click to toggle source
# File lib/litexbrl/tdnet/results_forecast_attribute.rb, line 10
def attributes
  {
    code: code,
    year: year,
    month: month,
    quarter: quarter,
    consolidation: consolidation,
    forecast_net_sales: forecast_net_sales,
    forecast_operating_income: forecast_operating_income,
    forecast_ordinary_income: forecast_ordinary_income,
    forecast_net_income: forecast_net_income,
    forecast_net_income_per_share: forecast_net_income_per_share,
    previous_forecast_net_sales: previous_forecast_net_sales,
    previous_forecast_operating_income: previous_forecast_operating_income,
    previous_forecast_ordinary_income: previous_forecast_ordinary_income,
    previous_forecast_net_income: previous_forecast_net_income,
    previous_forecast_net_income_per_share: previous_forecast_net_income_per_share,
    change_forecast_net_sales: change_forecast_net_sales,
    change_forecast_operating_income: change_forecast_operating_income,
    change_forecast_ordinary_income: change_forecast_ordinary_income,
    change_forecast_net_income: change_forecast_net_income,
  }
end