Class: PortfolioManager::Xml::PerformanceTargetType
- Inherits:
-
Object
- Object
- PortfolioManager::Xml::PerformanceTargetType
- Defined in:
- lib/portfolio_manager/xml.rb
Overview
{}performanceTargetType
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(targetMetric = nil, targetValue = nil) ⇒ PerformanceTargetType
constructor
A new instance of PerformanceTargetType.
Constructor Details
#initialize(targetMetric = nil, targetValue = nil) ⇒ PerformanceTargetType
Returns a new instance of PerformanceTargetType.
7364 7365 7366 7367 |
# File 'lib/portfolio_manager/xml.rb', line 7364 def initialize(targetMetric = nil, targetValue = nil) @targetMetric = targetMetric @targetValue = targetValue end |
Instance Attribute Details
#targetMetric ⇒ SOAP::SOAPString
7360 7361 7362 7363 7364 7365 7366 7367 7368 |
# File 'lib/portfolio_manager/xml.rb', line 7360 class PerformanceTargetType attr_accessor :targetMetric attr_accessor :targetValue def initialize(targetMetric = nil, targetValue = nil) @targetMetric = targetMetric @targetValue = targetValue end end |
#targetValue ⇒ SOAP::SOAPInteger
7360 7361 7362 7363 7364 7365 7366 7367 7368 |
# File 'lib/portfolio_manager/xml.rb', line 7360 class PerformanceTargetType attr_accessor :targetMetric attr_accessor :targetValue def initialize(targetMetric = nil, targetValue = nil) @targetMetric = targetMetric @targetValue = targetValue end end |