commonMain.app.bsky.actor.BskyAppProgressGuide.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bluesky Show documentation
Show all versions of bluesky Show documentation
Bluesky Social API bindings for Kotlin.
The newest version!
@file:Suppress("DEPRECATION")
package app.bsky.actor
import kotlin.String
import kotlin.Suppress
import kotlinx.serialization.Serializable
/**
* If set, an active progress guide. Once completed, can be set to undefined. Should have unspecced
* fields tracking progress.
*/
@Serializable
public data class BskyAppProgressGuide(
public val guide: String,
) {
init {
require(guide.count() <= 100) {
"guide.count() must be <= 100, but was ${guide.count()}"
}
}
}