Class: ResellerAccountMovementStruct

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

Overview

http://soapi.ovh.com/managerresellerAccountMovementStruct

Constant Summary collapse

@@schema_type =
"resellerAccountMovementStruct"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["amount", ["SOAP::SOAPInt", XSD::QName.new(nil, "amount")]], ["balance", ["SOAP::SOAPInt", XSD::QName.new(nil, "balance")]], ["previousBalance", ["SOAP::SOAPInt", XSD::QName.new(nil, "previousBalance")]], ["date", ["SOAP::SOAPString", XSD::QName.new(nil, "date")]], ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]], ["operation", ["SOAP::SOAPString", XSD::QName.new(nil, "operation")]], ["order", ["SOAP::SOAPInt", XSD::QName.new(nil, "order")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(amount = nil, balance = nil, previousBalance = nil, date = nil, description = nil, operation = nil, order = nil) ⇒ ResellerAccountMovementStruct

Returns a new instance of ResellerAccountMovementStruct.



3999
4000
4001
4002
4003
4004
4005
4006
4007
# File 'lib/ovhrb/manager/manager.rb', line 3999

def initialize(amount = nil, balance = nil, previousBalance = nil, date = nil, description = nil, operation = nil, order = nil)
  @amount = amount
  @balance = balance
  @previousBalance = previousBalance
  @date = date
  @description = description
  @operation = operation
  @order = order
end

Instance Attribute Details

#amountObject

Returns the value of attribute amount.



3991
3992
3993
# File 'lib/ovhrb/manager/manager.rb', line 3991

def amount
  @amount
end

#balanceObject

Returns the value of attribute balance.



3992
3993
3994
# File 'lib/ovhrb/manager/manager.rb', line 3992

def balance
  @balance
end

#dateObject

Returns the value of attribute date.



3994
3995
3996
# File 'lib/ovhrb/manager/manager.rb', line 3994

def date
  @date
end

#descriptionObject

Returns the value of attribute description.



3995
3996
3997
# File 'lib/ovhrb/manager/manager.rb', line 3995

def description
  @description
end

#operationObject

Returns the value of attribute operation.



3996
3997
3998
# File 'lib/ovhrb/manager/manager.rb', line 3996

def operation
  @operation
end

#orderObject

Returns the value of attribute order.



3997
3998
3999
# File 'lib/ovhrb/manager/manager.rb', line 3997

def order
  @order
end

#previousBalanceObject

Returns the value of attribute previousBalance.



3993
3994
3995
# File 'lib/ovhrb/manager/manager.rb', line 3993

def previousBalance
  @previousBalance
end