Adding new field in EventAnnotationsSummary
This commit is contained in:
parent
10aa753231
commit
d18ea43211
@ -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,
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user