JsonArray

data class JsonArray<V>(val value: List<V>) : JsonValue<Array<V>>

Constructors

Link copied to clipboard
constructor(value: List<V>)

Functions

Link copied to clipboard
fun unwrap(): Any

Unwrap the value associated with the specific JsonValue type.

Properties

Link copied to clipboard
val value: List<V>