Class: FlightAlertChannel

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(channel_id = nil, channel_name = nil, e_arrival = nil, e_cancelled = nil, e_departure = nil, e_diverted = nil, e_filed = nil, mask_summary = nil, target_address = nil) ⇒ FlightAlertChannel

Returns a new instance of FlightAlertChannel.



1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
# File 'lib/FlightXML2REST.rb', line 1374

def initialize(channel_id = nil, channel_name = nil, e_arrival = nil, e_cancelled = nil, e_departure = nil, e_diverted = nil, e_filed = nil, mask_summary = nil, target_address = nil)
  @channel_id = channel_id
  @channel_name = channel_name
  @e_arrival = e_arrival
  @e_cancelled = e_cancelled
  @e_departure = e_departure
  @e_diverted = e_diverted
  @e_filed = e_filed
  @mask_summary = mask_summary
  @target_address = target_address
end

Instance Attribute Details

#channel_idObject

Returns the value of attribute channel_id.



1373
1374
1375
# File 'lib/FlightXML2REST.rb', line 1373

def channel_id
  @channel_id
end

#channel_nameObject

Returns the value of attribute channel_name.



1373
1374
1375
# File 'lib/FlightXML2REST.rb', line 1373

def channel_name
  @channel_name
end

#e_arrivalObject

Returns the value of attribute e_arrival.



1373
1374
1375
# File 'lib/FlightXML2REST.rb', line 1373

def e_arrival
  @e_arrival
end

#e_cancelledObject

Returns the value of attribute e_cancelled.



1373
1374
1375
# File 'lib/FlightXML2REST.rb', line 1373

def e_cancelled
  @e_cancelled
end

#e_departureObject

Returns the value of attribute e_departure.



1373
1374
1375
# File 'lib/FlightXML2REST.rb', line 1373

def e_departure
  @e_departure
end

#e_divertedObject

Returns the value of attribute e_diverted.



1373
1374
1375
# File 'lib/FlightXML2REST.rb', line 1373

def e_diverted
  @e_diverted
end

#e_filedObject

Returns the value of attribute e_filed.



1373
1374
1375
# File 'lib/FlightXML2REST.rb', line 1373

def e_filed
  @e_filed
end

#mask_summaryObject

Returns the value of attribute mask_summary.



1373
1374
1375
# File 'lib/FlightXML2REST.rb', line 1373

def mask_summary
  @mask_summary
end

#target_addressObject

Returns the value of attribute target_address.



1373
1374
1375
# File 'lib/FlightXML2REST.rb', line 1373

def target_address
  @target_address
end