Class: Hackle::TrackEvent
- Defined in:
- lib/hackle/internal/event/user_event.rb
Instance Attribute Summary collapse
- #event ⇒ Event readonly
- #event_type ⇒ EventType readonly
Attributes inherited from UserEvent
Instance Method Summary collapse
-
#initialize(insert_id:, timestamp:, user:, event_type:, event:) ⇒ TrackEvent
constructor
A new instance of TrackEvent.
Methods inherited from UserEvent
exposure, remote_config, track
Constructor Details
#initialize(insert_id:, timestamp:, user:, event_type:, event:) ⇒ TrackEvent
137 138 139 140 141 142 143 144 145 146 147 |
# File 'lib/hackle/internal/event/user_event.rb', line 137 def initialize( insert_id:, timestamp:, user:, event_type:, event: ) super(insert_id: insert_id, timestamp: , user: user) @event_type = event_type @event = event end |