Sha256: f0b0f470a8ec68847bb9595b7ae31e7ce36408ba75f168a67758c82d6b3d1828

Contents?: true

Size: 404 Bytes

Versions: 2

Compression:

Stored size: 404 Bytes

Contents

module Killbill
  module Plugin
    class Event

      attr_reader :event_type, :object_type, :object_id, :account_id, :tenant_id

      def initialize(event_type, object_type, object_id, account_id, tenant_id)
        @event_type = event_type
        @object_type = object_type
        @object_id = object_id
        @account_id = account_id
        @tenant_id = tenant_id
      end

    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
killbill-1.0.15 lib/killbill/response/event.rb
killbill-1.0.14 lib/killbill/response/event.rb