Union JSONValue.PayloadUnion
Defines the possible types contained in a JSONValue
union PayloadUnion
;
Fields
Name | Type | Description |
---|---|---|
array
|
JSONValue[] | Array or JSON values |
bigInt
|
WrappedBigInt | Only used if LexOptions was set for parsing
|
boolean
|
bool | JSON true or false values
|
double_
|
double | The default field for storing numbers |
integer
|
long | Only used if LexOptions was set for parsing
|
null_
|
typeof(null) | A JSON null value
|
object
|
JSONValue[string] | Dictionary of JSON values (object) |
string
|
string | String value |