Class: PortfolioManager::Xml::AlertsType::Alert

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

Overview

inner class for member: alert {}alert

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name = nil, description = nil) ⇒ Alert

Returns a new instance of Alert.



7394
7395
7396
7397
# File 'lib/portfolio_manager/xml.rb', line 7394

def initialize(name = nil, description = nil)
  @name = name
  @description = description
end

Instance Attribute Details

#descriptionSOAP::SOAPString

Returns:

  • (SOAP::SOAPString)


7390
7391
7392
7393
7394
7395
7396
7397
7398
# File 'lib/portfolio_manager/xml.rb', line 7390

class Alert
  attr_accessor :name
  attr_accessor :description

  def initialize(name = nil, description = nil)
    @name = name
    @description = description
  end
end

#nameSOAP::SOAPString

Returns:

  • (SOAP::SOAPString)


7390
7391
7392
7393
7394
7395
7396
7397
7398
# File 'lib/portfolio_manager/xml.rb', line 7390

class Alert
  attr_accessor :name
  attr_accessor :description

  def initialize(name = nil, description = nil)
    @name = name
    @description = description
  end
end