ListOptionsQueryParams

data class ListOptionsQueryParams(    val limit: Long? = 50,     val cursor: String? = null,     val scope: ListOptionsScope? = ListOptionsScope.Instance,     val prefix: String? = null,     val keys: List<Nsid> = emptyList())

Parameters

prefix

Filter keys by prefix

keys

Filter for only the specified keys. Ignored if prefix is provided

Constructors

Link copied to clipboard
constructor(    limit: Long? = 50,     cursor: String? = null,     scope: ListOptionsScope? = ListOptionsScope.Instance,     prefix: String? = null,     keys: List<Nsid> = emptyList())

Properties

Link copied to clipboard
val cursor: String? = null
Link copied to clipboard
val keys: List<Nsid>

Filter for only the specified keys. Ignored if prefix is provided

Link copied to clipboard
val limit: Long? = 50
Link copied to clipboard
val prefix: String? = null

Filter keys by prefix

Link copied to clipboard

Functions

Link copied to clipboard