diff --git a/event-logger/src/main/kotlin/events.kt b/event-logger/src/main/kotlin/events.kt index b47a29391..2f0d0d564 100644 --- a/event-logger/src/main/kotlin/events.kt +++ b/event-logger/src/main/kotlin/events.kt @@ -11,4 +11,12 @@ import kotlinx.serialization.Serializable sealed interface Event @Serializable -data class RemoteConfigSetEvent(val token: String, val name: String, val percentage: Int, val defaultValue: String? = null, val value: String? = null, val hashKey: String? = null, val uuids: Collection = Collections.emptyList()) : Event +data class RemoteConfigSetEvent( + val token: String, + val name: String, + val percentage: Int, + val defaultValue: String? = null, + val value: String? = null, + val hashKey: String? = null, + val uuids: Collection = Collections.emptyList() +) : Event