class SearchBirdseyeInFlightRequest

SearchBirdseyeInFlight

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 2307
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 2312
def post
  "howMany=#@howMany&offset=#@offset&query=#@query"
end