Class: BookingstudioRuby::WebService::EuropaeiskePerson
- Inherits:
-
Object
- Object
- BookingstudioRuby::WebService::EuropaeiskePerson
- Defined in:
- lib/bookingstudio_ruby/web_service/search_service.rb,
lib/bookingstudio_ruby/web_service/booking_service.rb
Overview
/EuropaeiskePerson
firstName - SOAP::SOAPString
lastName - SOAP::SOAPString
age - SOAP::SOAPInt
Instance Attribute Summary collapse
-
#age ⇒ Object
Returns the value of attribute age.
-
#firstName ⇒ Object
Returns the value of attribute firstName.
-
#lastName ⇒ Object
Returns the value of attribute lastName.
Instance Method Summary collapse
-
#initialize(firstName = nil, lastName = nil, age = nil) ⇒ EuropaeiskePerson
constructor
A new instance of EuropaeiskePerson.
Constructor Details
#initialize(firstName = nil, lastName = nil, age = nil) ⇒ EuropaeiskePerson
Returns a new instance of EuropaeiskePerson.
636 637 638 639 640 |
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 636 def initialize(firstName = nil, lastName = nil, age = nil) @firstName = firstName @lastName = lastName @age = age end |
Instance Attribute Details
#age ⇒ Object
Returns the value of attribute age.
634 635 636 |
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 634 def age @age end |
#firstName ⇒ Object
Returns the value of attribute firstName.
632 633 634 |
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 632 def firstName @firstName end |
#lastName ⇒ Object
Returns the value of attribute lastName.
633 634 635 |
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 633 def lastName @lastName end |