Fix final members in Entity
This commit is contained in:
parent
f04b67ba29
commit
25ca50c7bd
|
@ -26,14 +26,15 @@ internal open class LiveLocationAggregatedSummaryEntity(
|
|||
/**
|
||||
* Event id of the event that started the live.
|
||||
*/
|
||||
@PrimaryKey
|
||||
var eventId: String = "",
|
||||
|
||||
var roomId: String = "",
|
||||
|
||||
var isLive: Boolean? = null,
|
||||
|
||||
val endOfLiveTimestampAsMilliseconds: Long? = null,
|
||||
var endOfLiveTimestampAsMilliseconds: Long? = null,
|
||||
|
||||
val lastLocation: String? = null
|
||||
var lastLocation: String? = null
|
||||
) : RealmObject() {
|
||||
companion object
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue