Sha256: f743c850364dee79691262e71d8bfb463e6b41f5d4632b71e6cc3440641d6699
Contents?: true
Size: 445 Bytes
Versions: 43
Compression:
Stored size: 445 Bytes
Contents
# Copyright (c) 2015 Sqreen. All Rights Reserved. # Please refer to our terms for more information: https://www.sqreen.io/terms.html module Sqreen # Master interface for point in time events (e.g. Attack, RemoteException) class Event attr_reader :payload def initialize(payload) @payload = payload end def to_hash payload.to_hash end def to_s "<#{self.class.name}: #{to_hash}>" end end end
Version data entries
43 entries across 43 versions & 1 rubygems