Class: MakePayment

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

Overview

http://pennytel.commakePayment

id - SOAP::SOAPString
password - SOAP::SOAPString
amount - SOAP::SOAPFloat

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id = nil, password = nil, amount = nil) ⇒ MakePayment

Returns a new instance of MakePayment.



484
485
486
487
488
# File 'lib/default.rb', line 484

def initialize(id = nil, password = nil, amount = nil)
  @id = id
  @password = password
  @amount = amount
end

Instance Attribute Details

#amountObject

Returns the value of attribute amount.



482
483
484
# File 'lib/default.rb', line 482

def amount
  @amount
end

#idObject

Returns the value of attribute id.



480
481
482
# File 'lib/default.rb', line 480

def id
  @id
end

#passwordObject

Returns the value of attribute password.



481
482
483
# File 'lib/default.rb', line 481

def password
  @password
end