Class: BookingstudioRuby::WebService::SearchPaged
- Inherits:
-
Object
- Object
- BookingstudioRuby::WebService::SearchPaged
- 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
-
#limit ⇒ Object
Returns the value of attribute limit.
-
#offset ⇒ Object
Returns the value of attribute offset.
-
#query ⇒ Object
Returns the value of attribute query.
-
#token ⇒ Object
Returns the value of attribute token.
Instance Method Summary collapse
-
#initialize(token = nil, query = nil, offset = nil, limit = nil) ⇒ SearchPaged
constructor
A new instance of SearchPaged.
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
#limit ⇒ Object
Returns the value of attribute limit.
1126 1127 1128 |
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 1126 def limit @limit end |
#offset ⇒ Object
Returns the value of attribute offset.
1125 1126 1127 |
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 1125 def offset @offset end |
#query ⇒ Object
Returns the value of attribute query.
1124 1125 1126 |
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 1124 def query @query end |
#token ⇒ Object
Returns the value of attribute token.
1123 1124 1125 |
# File 'lib/bookingstudio_ruby/web_service/search_service.rb', line 1123 def token @token end |