Package-level declarations

Types

Link copied to clipboard
data class JSONArray(elements: MutableList<JSONElement>) : JSONElement

JSON array. Can contain any JSONElements.

Link copied to clipboard
data class JSONBoolean(val boolean: Boolean) : JSONElement

JSON boolean.

Link copied to clipboard

Generic JSON element.

Link copied to clipboard
data class JSONNumber(val number: Number) : JSONElement

JSON number.

Link copied to clipboard
data class JSONObject(properties: MutableList<JSONProperty>) : JSONElement

JSON object.

Link copied to clipboard
data class JSONProperty(val key: String, val value: JSONElement) : JSONElement

JSON object property.

Link copied to clipboard
data class JSONString(val string: String) : JSONElement

JSON string.

Link copied to clipboard