Class: PortfolioManager::Xml::Ped

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

Overview

{}ped

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#monthSOAP::SOAPNonNegativeInteger

Returns:

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

#yearSOAP::SOAPNonNegativeInteger

Returns:

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