class FlightAlertEntry

Attributes

aircrafttype[RW]
alert_changed[RW]
alert_created[RW]
alert_id[RW]
channels[RW]
date_end[RW]
date_start[RW]
description[RW]
destination[RW]
enabled[RW]
ident[RW]
origin[RW]
type[RW]
user_ident[RW]

Public Class Methods

new(aircrafttype = nil, alert_changed = nil, alert_created = nil, alert_id = nil, channels = [], date_end = nil, date_start = nil, description = nil, destination = nil, enabled = nil, ident = nil, origin = nil, type = nil, user_ident = nil ) click to toggle source
# File lib/FlightXML2REST.rb, line 1340
def initialize (aircrafttype = nil,
                alert_changed = nil,
                alert_created = nil,
                alert_id = nil,
                channels = [],
                date_end = nil,
                date_start = nil,
                description = nil,
                destination = nil,
                enabled = nil,
                ident = nil,
                origin = nil,
                type = nil,
                user_ident = nil
               )
  @aircrafttype = aircrafttype
  @alert_changed = alert_changed
  @alert_created = alert_created
  @alert_id = alert_id
  @channels = channels
  @date_end = date_end
  @date_start = date_start
  @description = description
  @destination = destination
  @enabled = enabled
  @ident = ident
  @origin = origin
  @type = type
  @user_ident = user_ident
end