Class: PortfolioManager::Xml::PerformanceTargetType

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

Overview

{}performanceTargetType

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#targetMetricSOAP::SOAPString

Returns:

  • (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

#targetValueSOAP::SOAPInteger

Returns:

  • (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