All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.app.bsky.actor.BskyAppProgressGuide.kt Maven / Gradle / Ivy

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()}"
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy