Class: PortfolioManager::Xml::DemandTrackingType

Inherits:
Object
  • Object
show all
Defined in:
lib/portfolio_manager/xml.rb

Overview

{}demandTrackingType

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(demand = nil, demandCost = nil) ⇒ DemandTrackingType

Returns a new instance of DemandTrackingType.



7240
7241
7242
7243
# File 'lib/portfolio_manager/xml.rb', line 7240

def initialize(demand = nil, demandCost = nil)
  @demand = demand
  @demandCost = demandCost
end

Instance Attribute Details

#demandObject

Returns:

  • (Object)


7236
7237
7238
7239
7240
7241
7242
7243
7244
# File 'lib/portfolio_manager/xml.rb', line 7236

class DemandTrackingType
  attr_accessor :demand
  attr_accessor :demandCost

  def initialize(demand = nil, demandCost = nil)
    @demand = demand
    @demandCost = demandCost
  end
end

#demandCostObject

Returns:

  • (Object)


7236
7237
7238
7239
7240
7241
7242
7243
7244
# File 'lib/portfolio_manager/xml.rb', line 7236

class DemandTrackingType
  attr_accessor :demand
  attr_accessor :demandCost

  def initialize(demand = nil, demandCost = nil)
    @demand = demand
    @demandCost = demandCost
  end
end