Class: PortfolioManager::Xml::SwimmingPoolType::UseDetails
- Inherits:
-
Object
- Object
- PortfolioManager::Xml::SwimmingPoolType::UseDetails
- Defined in:
- lib/portfolio_manager/xml.rb
Overview
inner class for member: useDetails {}useDetails
Instance Attribute Summary collapse
- #monthsInUse ⇒ PortfolioManager::Xml::MonthsInUseType
- #poolLocation ⇒ PortfolioManager::Xml::PoolType
- #poolSize ⇒ PortfolioManager::Xml::PoolSizeType
Instance Method Summary collapse
-
#initialize(poolSize = nil, poolLocation = nil, monthsInUse = nil) ⇒ UseDetails
constructor
A new instance of UseDetails.
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
#monthsInUse ⇒ PortfolioManager::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 |
#poolLocation ⇒ PortfolioManager::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 |
#poolSize ⇒ PortfolioManager::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 |