Class: ArrayOfAirlineInsightStruct

Inherits:
Object
  • Object
show all
Defined in:
lib/FlightXML2REST.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = [], end_date = nil, start_date = nil) ⇒ ArrayOfAirlineInsightStruct

Returns a new instance of ArrayOfAirlineInsightStruct.



325
326
327
328
329
# File 'lib/FlightXML2REST.rb', line 325

def initialize(data = [], end_date = nil, start_date = nil)
  @data = data
  @end_date = end_date
  @start_date = start_date
end

Instance Attribute Details

#dataObject

Returns the value of attribute data.



324
325
326
# File 'lib/FlightXML2REST.rb', line 324

def data
  @data
end

#end_dateObject

Returns the value of attribute end_date.



324
325
326
# File 'lib/FlightXML2REST.rb', line 324

def end_date
  @end_date
end

#start_dateObject

Returns the value of attribute start_date.



324
325
326
# File 'lib/FlightXML2REST.rb', line 324

def start_date
  @start_date
end