ListValue

class ListValue(val listValue: List<Value>) : Value

Represents a list of values.

Note: This type is recursive — a ListValue can contain other ListValue elements. Deeply nested payloads may cause a StackOverflowError during deserialization. In practice, backend payloads are expected to be shallow (1-2 levels).

Parameters

listValue

The list of values.

Constructors

Link copied to clipboard
constructor(listValue: List<Value>)

Properties

Link copied to clipboard
Link copied to clipboard