Class: AccountHistoryReturn

Inherits:
Object
  • Object
show all
Defined in:
lib/ovhrb/manager/manager.rb

Overview

http://soapi.ovh.com/manageraccountHistoryReturn

Constant Summary collapse

@@schema_type =
"accountHistoryReturn"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["month", ["SOAP::SOAPInt", XSD::QName.new(nil, "month")]], ["year", ["SOAP::SOAPInt", XSD::QName.new(nil, "year")]], ["movements", ["MyArrayOfAccountMovementStructType", XSD::QName.new(nil, "movements")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(month = nil, year = nil, movements = nil) ⇒ AccountHistoryReturn

Returns a new instance of AccountHistoryReturn.



4132
4133
4134
4135
4136
# File 'lib/ovhrb/manager/manager.rb', line 4132

def initialize(month = nil, year = nil, movements = nil)
  @month = month
  @year = year
  @movements = movements
end

Instance Attribute Details

#monthObject

Returns the value of attribute month.



4128
4129
4130
# File 'lib/ovhrb/manager/manager.rb', line 4128

def month
  @month
end

#movementsObject

Returns the value of attribute movements.



4130
4131
4132
# File 'lib/ovhrb/manager/manager.rb', line 4130

def movements
  @movements
end

#yearObject

Returns the value of attribute year.



4129
4130
4131
# File 'lib/ovhrb/manager/manager.rb', line 4129

def year
  @year
end