class SearchRequest
Search
Attributes
howMany[RW]
offset[RW]
query[RW]
Public Class Methods
new(howMany = nil, offset = nil, query = nil)
click to toggle source
# File lib/FlightXML2REST.rb, line 2245 def initialize(howMany = nil, offset = nil, query = nil) @howMany = howMany @offset = offset @query = query end
Public Instance Methods
post()
click to toggle source
# File lib/FlightXML2REST.rb, line 2250 def post "howMany=#@howMany&offset=#@offset&query=#@query" end