Class: BookingstudioRuby::WebService::Facility

Inherits:
Object
  • Object
show all
Defined in:
lib/bookingstudio_ruby/web_service/search_service.rb

Overview

/Facility

id - SOAP::SOAPInt
measurementType - BookingstudioRuby::WebService::MeasurementTypes
internalName - SOAP::SOAPString
name - SOAP::SOAPString
shortDescription - SOAP::SOAPString
image - BookingstudioRuby::WebService::Image

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id = nil, measurementType = nil, internalName = nil, name = nil, shortDescription = nil, image = nil) ⇒ Facility

Returns a new instance of Facility.



78
79
80
81
82
83
84
85
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 78

def initialize(id = nil, measurementType = nil, internalName = nil, name = nil, shortDescription = nil, image = nil)
  @id = id
  @measurementType = measurementType
  @internalName = internalName
  @name = name
  @shortDescription = shortDescription
  @image = image
end

Instance Attribute Details

#idObject

Returns the value of attribute id.



71
72
73
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 71

def id
  @id
end

#imageObject

Returns the value of attribute image.



76
77
78
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 76

def image
  @image
end

#internalNameObject

Returns the value of attribute internalName.



73
74
75
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 73

def internalName
  @internalName
end

#measurementTypeObject

Returns the value of attribute measurementType.



72
73
74
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 72

def measurementType
  @measurementType
end

#nameObject

Returns the value of attribute name.



74
75
76
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 74

def name
  @name
end

#shortDescriptionObject

Returns the value of attribute shortDescription.



75
76
77
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 75

def shortDescription
  @shortDescription
end