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)

Represents a JetpackEntity, which is a data structure for storing information about a jetpack.

Link copied to clipboard

Represents a SyncAction, which is an enumeration of the possible actions to take when syncing an item.