Class: PortfolioManager::Xml::UnAuthDesignType::Target
- Inherits:
-
Object
- Object
- PortfolioManager::Xml::UnAuthDesignType::Target
- Defined in:
- lib/portfolio_manager/xml.rb
Overview
inner class for member: target {}target
Instance Attribute Summary collapse
- #targetTypePercentage ⇒ PortfolioManager::Xml::TargetTypePercentageType
- #targetTypeScore ⇒ PortfolioManager::Xml::TargetTypeScoreType
Instance Method Summary collapse
-
#initialize(targetTypeScore = nil, targetTypePercentage = nil) ⇒ Target
constructor
A new instance of Target.
Constructor Details
#initialize(targetTypeScore = nil, targetTypePercentage = nil) ⇒ Target
Returns a new instance of Target.
3802 3803 3804 3805 |
# File 'lib/portfolio_manager/xml.rb', line 3802 def initialize(targetTypeScore = nil, targetTypePercentage = nil) @targetTypeScore = targetTypeScore @targetTypePercentage = targetTypePercentage end |
Instance Attribute Details
#targetTypePercentage ⇒ PortfolioManager::Xml::TargetTypePercentageType
3798 3799 3800 3801 3802 3803 3804 3805 3806 |
# File 'lib/portfolio_manager/xml.rb', line 3798 class Target attr_accessor :targetTypeScore attr_accessor :targetTypePercentage def initialize(targetTypeScore = nil, targetTypePercentage = nil) @targetTypeScore = targetTypeScore @targetTypePercentage = targetTypePercentage end end |
#targetTypeScore ⇒ PortfolioManager::Xml::TargetTypeScoreType
3798 3799 3800 3801 3802 3803 3804 3805 3806 |
# File 'lib/portfolio_manager/xml.rb', line 3798 class Target attr_accessor :targetTypeScore attr_accessor :targetTypePercentage def initialize(targetTypeScore = nil, targetTypePercentage = nil) @targetTypeScore = targetTypeScore @targetTypePercentage = targetTypePercentage end end |