Class: BookingstudioRuby::WebService::FacilityValue

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

Overview

/FacilityValue

facilityId - SOAP::SOAPInt
value - (any)
fromDate - SOAP::SOAPDateTime
toDate - SOAP::SOAPDateTime

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(facilityId = nil, value = nil, fromDate = nil, toDate = nil) ⇒ FacilityValue

Returns a new instance of FacilityValue.



390
391
392
393
394
395
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 390

def initialize(facilityId = nil, value = nil, fromDate = nil, toDate = nil)
  @facilityId = facilityId
  @value = value
  @fromDate = fromDate
  @toDate = toDate
end

Instance Attribute Details

#facilityIdObject

Returns the value of attribute facilityId.



385
386
387
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 385

def facilityId
  @facilityId
end

#fromDateObject

Returns the value of attribute fromDate.



387
388
389
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 387

def fromDate
  @fromDate
end

#toDateObject

Returns the value of attribute toDate.



388
389
390
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 388

def toDate
  @toDate
end

#valueObject

Returns the value of attribute value.



386
387
388
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 386

def value
  @value
end