commonMain.app.bsky.actor.getProfile.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.Any
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlinx.collections.immutable.toImmutableList
import kotlinx.serialization.Serializable
import sh.christian.ozone.api.AtIdentifier
import sh.christian.ozone.api.model.ReadOnlyList
/**
* @param actor Handle or DID of account to fetch profile of.
*/
@Serializable
public data class GetProfileQueryParams(
/**
* Handle or DID of account to fetch profile of.
*/
public val actor: AtIdentifier,
) {
public fun asList(): ReadOnlyList> = buildList {
add("actor" to actor)
}.toImmutableList()
}
public typealias GetProfileResponse = ProfileViewDetailed