Class: Verify

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

Overview

http://pennytel.comverify

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) ⇒ Verify

Returns a new instance of Verify.



655
656
657
658
659
# File 'lib/default.rb', line 655

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.



653
654
655
# File 'lib/default.rb', line 653

def amount
  @amount
end

#idObject

Returns the value of attribute id.



651
652
653
# File 'lib/default.rb', line 651

def id
  @id
end

#passwordObject

Returns the value of attribute password.



652
653
654
# File 'lib/default.rb', line 652

def password
  @password
end