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

commonMain.com.atproto.temp.fetchLabels.kt Maven / Gradle / Ivy

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

package com.atproto.temp

import com.atproto.label.Label
import kotlin.Any
import kotlin.Long
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlinx.serialization.Serializable

@Serializable
public data class FetchLabelsQueryParams(
  public val since: Long? = null,
  public val limit: Long? = 50,
) {
  init {
    require(limit == null || limit >= 1) {
      "limit must be >= 1, but was $limit"
    }
    require(limit == null || limit <= 250) {
      "limit must be <= 250, but was $limit"
    }
  }

  public fun asList(): List> = buildList {
    add("since" to since)
    add("limit" to limit)
  }
}

@Serializable
public data class FetchLabelsResponse(
  public val labels: List




© 2015 - 2024 Weber Informatics LLC | Privacy Policy