app
Toggle table of contents
androidJvm
Platform filter
androidJvm
Switch theme
Search in API
app
app
/
com.fam007e.receipts.data.db.dao
/
AchievementDao
Achievement
Dao
interface
AchievementDao
Members
Functions
get
Achievement
By
Id
Link copied to clipboard
abstract
suspend
fun
getAchievementById
(
id
:
String
)
:
AchievementEntity
?
get
All
Achievements
Link copied to clipboard
abstract
fun
getAllAchievements
(
)
:
Flow
<
List
<
AchievementEntity
>
>
insert
Achievement
Link copied to clipboard
abstract
suspend
fun
insertAchievement
(
achievement
:
AchievementEntity
)
insert
Achievements
Link copied to clipboard
abstract
suspend
fun
insertAchievements
(
achievements
:
List
<
AchievementEntity
>
)
is
Unlocked
Link copied to clipboard
abstract
suspend
fun
isUnlocked
(
id
:
String
)
:
Boolean
unlock
Link copied to clipboard
abstract
suspend
fun
unlock
(
id
:
String
,
timestamp
:
Long
=
System.currentTimeMillis()
)