Class: ResellerAccountHistoryReturn

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

Overview

http://soapi.ovh.com/managerresellerAccountHistoryReturn

Constant Summary collapse

@@schema_type =
"resellerAccountHistoryReturn"
@@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", ["MyArrayOfResellerAccountMovementStructType", XSD::QName.new(nil, "movements")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of ResellerAccountHistoryReturn.



4020
4021
4022
4023
4024
# File 'lib/ovhrb/manager/manager.rb', line 4020

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.



4016
4017
4018
# File 'lib/ovhrb/manager/manager.rb', line 4016

def month
  @month
end

#movementsObject

Returns the value of attribute movements.



4018
4019
4020
# File 'lib/ovhrb/manager/manager.rb', line 4018

def movements
  @movements
end

#yearObject

Returns the value of attribute year.



4017
4018
4019
# File 'lib/ovhrb/manager/manager.rb', line 4017

def year
  @year
end