Class: MultipleSignup

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

Overview

http://pennytel.commultipleSignup

email - SOAP::SOAPString
password - SOAP::SOAPString
location - SOAP::SOAPString
numberOfAccounts - SOAP::SOAPInt

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(email = nil, password = nil, location = nil, numberOfAccounts = nil) ⇒ MultipleSignup

Returns a new instance of MultipleSignup.



585
586
587
588
589
590
# File 'lib/default.rb', line 585

def initialize(email = nil, password = nil, location = nil, numberOfAccounts = nil)
  @email = email
  @password = password
  @location = location
  @numberOfAccounts = numberOfAccounts
end

Instance Attribute Details

#emailObject

Returns the value of attribute email.



580
581
582
# File 'lib/default.rb', line 580

def email
  @email
end

#locationObject

Returns the value of attribute location.



582
583
584
# File 'lib/default.rb', line 582

def location
  @location
end

#numberOfAccountsObject

Returns the value of attribute numberOfAccounts.



583
584
585
# File 'lib/default.rb', line 583

def numberOfAccounts
  @numberOfAccounts
end

#passwordObject

Returns the value of attribute password.



581
582
583
# File 'lib/default.rb', line 581

def password
  @password
end