commonMain.com.atproto.server.checkAccountStatus.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 com.atproto.server
import kotlin.Boolean
import kotlin.Long
import kotlin.String
import kotlin.Suppress
import kotlinx.serialization.Serializable
import sh.christian.ozone.api.Cid
@Serializable
public data class CheckAccountStatusResponse(
public val activated: Boolean,
public val validDid: Boolean,
public val repoCommit: Cid,
public val repoRev: String,
public val repoBlocks: Long,
public val indexedRecords: Long,
public val privateStateValues: Long,
public val expectedBlobs: Long,
public val importedBlobs: Long,
)