Adding new field in EventAnnotationsSummary

This commit is contained in:
Maxime NATUREL 2022-04-27 17:17:31 +02:00
parent 10aa753231
commit d18ea43211

View File

@ -15,10 +15,13 @@
*/ */
package org.matrix.android.sdk.api.session.room.model package org.matrix.android.sdk.api.session.room.model
import org.matrix.android.sdk.api.session.room.model.livelocation.LiveLocationAggregatedSummary
data class EventAnnotationsSummary( data class EventAnnotationsSummary(
val eventId: String, val eventId: String,
val reactionsSummary: List<ReactionAggregatedSummary> = emptyList(), val reactionsSummary: List<ReactionAggregatedSummary> = emptyList(),
val editSummary: EditAggregatedSummary? = null, val editSummary: EditAggregatedSummary? = null,
val pollResponseSummary: PollResponseAggregatedSummary? = null, val pollResponseSummary: PollResponseAggregatedSummary? = null,
val referencesAggregatedSummary: ReferencesAggregatedSummary? = null val referencesAggregatedSummary: ReferencesAggregatedSummary? = null,
val liveLocationAggregatedSummary: LiveLocationAggregatedSummary? = null,
) )