Package com. google. android. fhir. db. impl. entities
Types
Link copied to clipboard
data class LocalChangeEntity(id: Long, resourceType: String, resourceId: String, timestamp: String, type: LocalChangeEntity.Type, payload: String, versionId: String?)
Content copied to clipboard
When a local change to a resource happens, the lastUpdated timestamp in ResourceEntity is updated and the diff itself is inserted in this table. The value of the diff depends upon the type of change and can be:
Link copied to clipboard
data class SyncedResourceEntity(resourceType: <ERROR CLASS>, lastUpdate: String)
Content copied to clipboard
Class that models a table that holds all resource types that were synced and the highest _lastUpdate
value of each resource type.