JSONValue.PayloadUnion

Defines the possible types contained in a JSONValue

Members

Variables

array
JSONValue[] array;

Array or JSON values

bigInt
WrappedBigInt bigInt;

Only used if LexOptions.useBigInt was set for parsing

boolean
bool boolean;

JSON true or false values

double_
double double_;

The default field for storing numbers

integer
long integer;

Only used if LexOptions.useLong was set for parsing

null_
typeof(null) null_;

* Defines the possible types contained in a JSONValue *//// A JSON null valu

object
JSONValue[.string] object;

Dictionary of JSON values (object)

Meta