fix: payload (de)serialization of some events (#6858)

(cherry picked from commit 9378e19090)
This commit is contained in:
Livio Spring
2023-11-03 13:02:17 +02:00
parent d27136dcba
commit c58dfe9aa0
4 changed files with 12 additions and 11 deletions

View File

@@ -17,7 +17,7 @@ func EventTypeFromFeature(feature domain.Feature) eventstore.EventType {
}
type SetEvent[T SetEventType] struct {
*eventstore.BaseEvent
*eventstore.BaseEvent `json:"-"`
Value T
}