Class: PrepaidOperationStruct

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

Overview

http://soapi.ovh.com/managerprepaidOperationStruct

Constant Summary collapse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(balance_forward = nil, date = nil, nic = nil, account_name = nil, description = nil, amount = nil, balance = nil, order = nil, id = nil, operation = nil) ⇒ PrepaidOperationStruct

Returns a new instance of PrepaidOperationStruct.



5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
# File 'lib/ovhrb/manager/manager.rb', line 5391

def initialize(balance_forward = nil, date = nil, nic = nil,  = nil, description = nil, amount = nil, balance = nil, order = nil, id = nil, operation = nil)
  @balance_forward = balance_forward
  @date = date
  @nic = nic
  @account_name = 
  @description = description
  @amount = amount
  @balance = balance
  @order = order
  @id = id
  @operation = operation
end

Instance Attribute Details

#account_nameObject

Returns the value of attribute account_name.



5383
5384
5385
# File 'lib/ovhrb/manager/manager.rb', line 5383

def 
  @account_name
end

#amountObject

Returns the value of attribute amount.



5385
5386
5387
# File 'lib/ovhrb/manager/manager.rb', line 5385

def amount
  @amount
end

#balanceObject

Returns the value of attribute balance.



5386
5387
5388
# File 'lib/ovhrb/manager/manager.rb', line 5386

def balance
  @balance
end

#balance_forwardObject

Returns the value of attribute balance_forward.



5380
5381
5382
# File 'lib/ovhrb/manager/manager.rb', line 5380

def balance_forward
  @balance_forward
end

#dateObject

Returns the value of attribute date.



5381
5382
5383
# File 'lib/ovhrb/manager/manager.rb', line 5381

def date
  @date
end

#descriptionObject

Returns the value of attribute description.



5384
5385
5386
# File 'lib/ovhrb/manager/manager.rb', line 5384

def description
  @description
end

#idObject

Returns the value of attribute id.



5388
5389
5390
# File 'lib/ovhrb/manager/manager.rb', line 5388

def id
  @id
end

#nicObject

Returns the value of attribute nic.



5382
5383
5384
# File 'lib/ovhrb/manager/manager.rb', line 5382

def nic
  @nic
end

#operationObject

Returns the value of attribute operation.



5389
5390
5391
# File 'lib/ovhrb/manager/manager.rb', line 5389

def operation
  @operation
end

#orderObject

Returns the value of attribute order.



5387
5388
5389
# File 'lib/ovhrb/manager/manager.rb', line 5387

def order
  @order
end