Class: PortfolioManager::Xml::Ped
- Inherits:
-
Object
- Object
- PortfolioManager::Xml::Ped
- Defined in:
- lib/portfolio_manager/xml.rb
Overview
{}ped
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(month = nil, year = nil) ⇒ Ped
constructor
A new instance of Ped.
Constructor Details
#initialize(month = nil, year = nil) ⇒ Ped
Returns a new instance of Ped.
8003 8004 8005 8006 |
# File 'lib/portfolio_manager/xml.rb', line 8003 def initialize(month = nil, year = nil) @month = month @year = year end |
Instance Attribute Details
#month ⇒ SOAP::SOAPNonNegativeInteger
7999 8000 8001 8002 8003 8004 8005 8006 8007 |
# File 'lib/portfolio_manager/xml.rb', line 7999 class Ped attr_accessor :month attr_accessor :year def initialize(month = nil, year = nil) @month = month @year = year end end |
#year ⇒ SOAP::SOAPNonNegativeInteger
7999 8000 8001 8002 8003 8004 8005 8006 8007 |
# File 'lib/portfolio_manager/xml.rb', line 7999 class Ped attr_accessor :month attr_accessor :year def initialize(month = nil, year = nil) @month = month @year = year end end |