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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy