10 lines
191 B
Ruby
10 lines
191 B
Ruby
module Webhook
|
|
class EventSerializer
|
|
include FastJsonapi::ObjectSerializer
|
|
|
|
set_type :webhook_event
|
|
set_id :event_id
|
|
|
|
attributes :event_type, :timestamp, :payload
|
|
end
|
|
end
|