Class: AccountMovementStruct

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

Overview

http://soapi.ovh.com/manageraccountMovementStruct

Constant Summary collapse

@@schema_type =
"accountMovementStruct"
@@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) ⇒ AccountMovementStruct

Returns a new instance of AccountMovementStruct.



4111
4112
4113
4114
4115
4116
4117
4118
4119
# File 'lib/ovhrb/manager/manager.rb', line 4111

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.



4103
4104
4105
# File 'lib/ovhrb/manager/manager.rb', line 4103

def amount
  @amount
end

#balanceObject

Returns the value of attribute balance.



4104
4105
4106
# File 'lib/ovhrb/manager/manager.rb', line 4104

def balance
  @balance
end

#dateObject

Returns the value of attribute date.



4106
4107
4108
# File 'lib/ovhrb/manager/manager.rb', line 4106

def date
  @date
end

#descriptionObject

Returns the value of attribute description.



4107
4108
4109
# File 'lib/ovhrb/manager/manager.rb', line 4107

def description
  @description
end

#operationObject

Returns the value of attribute operation.



4108
4109
4110
# File 'lib/ovhrb/manager/manager.rb', line 4108

def operation
  @operation
end

#orderObject

Returns the value of attribute order.



4109
4110
4111
# File 'lib/ovhrb/manager/manager.rb', line 4109

def order
  @order
end

#previousBalanceObject

Returns the value of attribute previousBalance.



4105
4106
4107
# File 'lib/ovhrb/manager/manager.rb', line 4105

def previousBalance
  @previousBalance
end