Class: Signup

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

Overview

http://pennytel.comsignup

email - SOAP::SOAPString
password - SOAP::SOAPString
location - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(email = nil, password = nil, location = nil) ⇒ Signup

Returns a new instance of Signup.



606
607
608
609
610
# File 'lib/default.rb', line 606

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

Instance Attribute Details

#emailObject

Returns the value of attribute email.



602
603
604
# File 'lib/default.rb', line 602

def email
  @email
end

#locationObject

Returns the value of attribute location.



604
605
606
# File 'lib/default.rb', line 604

def location
  @location
end

#passwordObject

Returns the value of attribute password.



603
604
605
# File 'lib/default.rb', line 603

def password
  @password
end