Class: InsertOrUpdateWallet

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

Overview

http://pennytel.cominsertOrUpdateWallet

id - SOAP::SOAPString
password - SOAP::SOAPString
cardName - SOAP::SOAPString
creditCardNumber - SOAP::SOAPString
exp - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id = nil, password = nil, cardName = nil, creditCardNumber = nil, exp = nil) ⇒ InsertOrUpdateWallet

Returns a new instance of InsertOrUpdateWallet.



555
556
557
558
559
560
561
# File 'lib/default.rb', line 555

def initialize(id = nil, password = nil, cardName = nil, creditCardNumber = nil, exp = nil)
  @id = id
  @password = password
  @cardName = cardName
  @creditCardNumber = creditCardNumber
  @exp = exp
end

Instance Attribute Details

#cardNameObject

Returns the value of attribute cardName.



551
552
553
# File 'lib/default.rb', line 551

def cardName
  @cardName
end

#creditCardNumberObject

Returns the value of attribute creditCardNumber.



552
553
554
# File 'lib/default.rb', line 552

def creditCardNumber
  @creditCardNumber
end

#expObject

Returns the value of attribute exp.



553
554
555
# File 'lib/default.rb', line 553

def exp
  @exp
end

#idObject

Returns the value of attribute id.



549
550
551
# File 'lib/default.rb', line 549

def id
  @id
end

#passwordObject

Returns the value of attribute password.



550
551
552
# File 'lib/default.rb', line 550

def password
  @password
end