Class: BookingstudioRuby::WebService::SearchPaged

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

Overview

/SearchPaged

token - (any)
query - BookingstudioRuby::WebService::BookingQuery
offset - SOAP::SOAPInt
limit - SOAP::SOAPInt

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(token = nil, query = nil, offset = nil, limit = nil) ⇒ SearchPaged

Returns a new instance of SearchPaged.



1128
1129
1130
1131
1132
1133
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 1128

def initialize(token = nil, query = nil, offset = nil, limit = nil)
  @token = token
  @query = query
  @offset = offset
  @limit = limit
end

Instance Attribute Details

#limitObject

Returns the value of attribute limit.



1126
1127
1128
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 1126

def limit
  @limit
end

#offsetObject

Returns the value of attribute offset.



1125
1126
1127
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 1125

def offset
  @offset
end

#queryObject

Returns the value of attribute query.



1124
1125
1126
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 1124

def query
  @query
end

#tokenObject

Returns the value of attribute token.



1123
1124
1125
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 1123

def token
  @token
end