class EnrouteRequest
Enroute
Attributes
airport[RW]
filter[RW]
howMany[RW]
offset[RW]
Public Class Methods
new(airport = nil, filter = nil, howMany = nil, offset = nil)
click to toggle source
# File lib/FlightXML2REST.rb, line 812 def initialize(airport = nil, filter = nil, howMany = nil, offset = nil) @airport = airport @filter = filter @howMany = howMany @offset = offset end
Public Instance Methods
post()
click to toggle source
# File lib/FlightXML2REST.rb, line 818 def post "airport=#@airport&filter=#@filter&howMany=#@howMany&offset=#@offset" end