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

commonMain.com.atproto.sync.getRepoStatus.kt Maven / Gradle / Ivy

The newest version!
@file:Suppress("DEPRECATION")

package com.atproto.sync

import kotlin.Any
import kotlin.Boolean
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlinx.collections.immutable.toImmutableList
import kotlinx.serialization.Serializable
import sh.christian.ozone.api.Did
import sh.christian.ozone.api.model.ReadOnlyList

/**
 * @param did The DID of the repo.
 */
@Serializable
public data class GetRepoStatusQueryParams(
  /**
   * The DID of the repo.
   */
  public val did: Did,
) {
  public fun asList(): ReadOnlyList> = buildList {
    add("did" to did)
  }.toImmutableList()
}

/**
 * @param status If active=false, this optional field indicates a possible reason for why the
 * account is not active. If active=false and no status is supplied, then the host makes no claim for
 * why the repository is no longer being hosted.
 * @param rev Optional field, the current rev of the repo, if active=true
 */
@Serializable
public data class GetRepoStatusResponse(
  public val did: Did,
  public val active: Boolean,
  /**
   * If active=false, this optional field indicates a possible reason for why the account is not
   * active. If active=false and no status is supplied, then the host makes no claim for why the
   * repository is no longer being hosted.
   */
  public val status: GetRepoStatusStatus? = null,
  /**
   * Optional field, the current rev of the repo, if active=true
   */
  public val rev: String? = null,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy