class MapFlightRequest
MapFlight
Attributes
ident[RW]
mapHeight[RW]
mapWidth[RW]
Public Class Methods
new(ident = nil, mapHeight = nil, mapWidth = nil)
click to toggle source
# File lib/FlightXML2REST.rb, line 1760 def initialize(ident = nil, mapHeight = nil, mapWidth = nil) @ident = ident @mapHeight = mapHeight @mapWidth = mapWidth end
Public Instance Methods
post()
click to toggle source
# File lib/FlightXML2REST.rb, line 1765 def post "ident=#@ident&mapHeight=#@mapHeight&mapWidth=#@mapWidth" end