class AircraftTypeStruct
Attributes
description[RW]
manufacturer[RW]
type[RW]
Public Class Methods
new(description = nil, manufacturer = nil, type = nil)
click to toggle source
# File lib/FlightXML2REST.rb, line 35 def initialize (description = nil, manufacturer = nil, type = nil) @manufacturer = manufacturer @type = type @description = description end