Package-level declarations
Types
Link copied to clipboard
data class JetpackEntity(val id: String = UUID.randomUUID().toString(), val name: String, val price: Double, val userId: String = String(), val lastUpdated: Long = 0, val lastSynced: Long = 0, val needsSync: Boolean = false, val deleted: Boolean = false, val syncAction: SyncAction = SyncAction.NONE)
Room database entity representing a Jetpack item with offline-first sync capabilities.
Link copied to clipboard
Defines the type of synchronization action to perform on an entity.