Class: PortfolioManager::Xml::AlertsType::Alert
- Inherits:
-
Object
- Object
- PortfolioManager::Xml::AlertsType::Alert
- Defined in:
- lib/portfolio_manager/xml.rb
Overview
inner class for member: alert {}alert
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(name = nil, description = nil) ⇒ Alert
constructor
A new instance of Alert.
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
#description ⇒ 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 |
#name ⇒ 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 |