AggregatedReplace

@JsonClass(generateAdapter = true)
data class AggregatedReplace(    @Json(name = "event_id") val eventId: String? = null,     @Json(name = "origin_server_ts") val originServerTs: Long? = null,     @Json(name = "sender") val senderId: String? = null)

Note that there can be multiple events with an m.replace relationship to a given event (for example, if an event is edited multiple times). These should be aggregated by the homeserver. https://spec.matrix.org/v1.4/client-server-api/#server-side-aggregation-of-mreplace-relationships

Constructors

Link copied to clipboard
fun AggregatedReplace(    @Json(name = "event_id") eventId: String? = null,     @Json(name = "origin_server_ts") originServerTs: Long? = null,     @Json(name = "sender") senderId: String? = null)

Properties

Link copied to clipboard
val eventId: String? = null
Link copied to clipboard
val originServerTs: Long? = null
Link copied to clipboard
val senderId: String? = null