class SearchBirdseyePositionsRequest

SearchBirdseyePositions

Attributes

howMany[RW]
offset[RW]
query[RW]
uniqueFlights[RW]

Public Class Methods

new(howMany = nil, offset = nil, query = nil, uniqueFlights = nil) click to toggle source
# File lib/FlightXML2REST.rb, line 2360
def initialize(howMany = nil, offset = nil, query = nil, uniqueFlights = nil)
  @howMany = howMany
  @offset = offset
  @query = query
  @uniqueFlights = uniqueFlights
end

Public Instance Methods

post() click to toggle source
# File lib/FlightXML2REST.rb, line 2366
def post
  "howMany=#@howMany&offset=#@offset&query=#@query&uniqueFlights=#@uniqueFlights"
end