class Caliper::Events::NavigationEvent

Attributes

navigatedFrom[RW]

Public Class Methods

new() click to toggle source
Calls superclass method Caliper::Events::Event::new
# File lib/caliper/events/navigation_event.rb, line 33
def initialize
        super
        @type = Caliper::Events::EventType::NAVIGATION
  @action = Caliper::Actions::NavigationActions::NAVIGATED_TO
  @navigatedFrom = nil
  @target = nil
  @generated = nil
  @edApp = nil
  @group = nil
  @membership = nil
  @federatedSession = nil
end