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.



358
359
360
361
362
# File 'lib/FlightXML2REST.rb', line 358

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.



357
358
359
# File 'lib/FlightXML2REST.rb', line 357

def data
  @data
end

#end_dateObject

Returns the value of attribute end_date.



357
358
359
# File 'lib/FlightXML2REST.rb', line 357

def end_date
  @end_date
end

#start_dateObject

Returns the value of attribute start_date.



357
358
359
# File 'lib/FlightXML2REST.rb', line 357

def start_date
  @start_date
end