Class: BookingstudioRuby::WebService::EuropaeiskePerson

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#ageObject

Returns the value of attribute age.



634
635
636
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 634

def age
  @age
end

#firstNameObject

Returns the value of attribute firstName.



632
633
634
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 632

def firstName
  @firstName
end

#lastNameObject

Returns the value of attribute lastName.



633
634
635
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 633

def lastName
  @lastName
end