class RailsBand::ActiveSupport::Event::CacheDecrement

A wrapper for the event that is passed to ‘cache_decrement.active_support`.

def amount

def amount
  @amount ||= @event.payload.fetch(:amount)
end

def key

def key
  @key ||= @event.payload.fetch(:key)
end

def store

def store
  @store ||= @event.payload.fetch(:store)
end