Json
interface Json
Functions
get
Calls to the function will be translated to indexing operation (square brackets) on the receiver with propertyName as the argument.
abstract operator fun get(propertyName: String): Any?
set
Calls of the function will be translated to an assignment of value to the receiver indexed (with square brackets/index operation) with propertyName.
abstract operator fun set(propertyName: String, value: Any?)