class FleetArrivedRequest

FleetArrived

Attributes

fleet[RW]
howMany[RW]
offset[RW]

Public Class Methods

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

Public Instance Methods

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