Class: PortfolioManager::Xml::SwimmingPoolType::UseDetails

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

Overview

inner class for member: useDetails {}useDetails

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(poolSize = nil, poolLocation = nil, monthsInUse = nil) ⇒ UseDetails

Returns a new instance of UseDetails.



4719
4720
4721
4722
4723
# File 'lib/portfolio_manager/xml.rb', line 4719

def initialize(poolSize = nil, poolLocation = nil, monthsInUse = nil)
  @poolSize = poolSize
  @poolLocation = poolLocation
  @monthsInUse = monthsInUse
end

Instance Attribute Details

#monthsInUsePortfolioManager::Xml::MonthsInUseType



4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
# File 'lib/portfolio_manager/xml.rb', line 4714

class UseDetails
  attr_accessor :poolSize
  attr_accessor :poolLocation
  attr_accessor :monthsInUse

  def initialize(poolSize = nil, poolLocation = nil, monthsInUse = nil)
    @poolSize = poolSize
    @poolLocation = poolLocation
    @monthsInUse = monthsInUse
  end
end

#poolLocationPortfolioManager::Xml::PoolType



4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
# File 'lib/portfolio_manager/xml.rb', line 4714

class UseDetails
  attr_accessor :poolSize
  attr_accessor :poolLocation
  attr_accessor :monthsInUse

  def initialize(poolSize = nil, poolLocation = nil, monthsInUse = nil)
    @poolSize = poolSize
    @poolLocation = poolLocation
    @monthsInUse = monthsInUse
  end
end

#poolSizePortfolioManager::Xml::PoolSizeType



4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
# File 'lib/portfolio_manager/xml.rb', line 4714

class UseDetails
  attr_accessor :poolSize
  attr_accessor :poolLocation
  attr_accessor :monthsInUse

  def initialize(poolSize = nil, poolLocation = nil, monthsInUse = nil)
    @poolSize = poolSize
    @poolLocation = poolLocation
    @monthsInUse = monthsInUse
  end
end