Adding missing internal qualifier
This commit is contained in:
parent
d18ea43211
commit
f04b67ba29
@ -22,7 +22,7 @@ import io.realm.annotations.PrimaryKey
|
|||||||
/**
|
/**
|
||||||
* Aggregation info concerning a live location share.
|
* Aggregation info concerning a live location share.
|
||||||
*/
|
*/
|
||||||
class LiveLocationAggregatedSummaryEntity(
|
internal open class LiveLocationAggregatedSummaryEntity(
|
||||||
/**
|
/**
|
||||||
* Event id of the event that started the live.
|
* Event id of the event that started the live.
|
||||||
*/
|
*/
|
||||||
@ -34,4 +34,6 @@ class LiveLocationAggregatedSummaryEntity(
|
|||||||
val endOfLiveTimestampAsMilliseconds: Long? = null,
|
val endOfLiveTimestampAsMilliseconds: Long? = null,
|
||||||
|
|
||||||
val lastLocation: String? = null
|
val lastLocation: String? = null
|
||||||
) : RealmObject()
|
) : RealmObject() {
|
||||||
|
companion object
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user