Enum Json.Type
Represents the run time type of a JSON value.
enum Type
: int { ... }
Enum members
Name | Description |
---|---|
array
|
Array of JSON values |
Array
|
Compatibility alias |
bigInt
|
BigInt values |
Bool
|
Compatibility alias |
bool_
|
Boolean value |
Float
|
Compatibility alias |
float_
|
64-bit floating point value |
Int
|
Compatibility alias |
int_
|
64-bit integer value |
Null
|
Compatibility alias |
null_
|
Null value |
object
|
JSON object aka. dictionary from string to Json |
Object
|
Compatibility alias |
string
|
UTF-8 string |
String
|
Compatibility alias |
undefined
|
A non-existent value in a JSON object |
Undefined
|
Compatibility alias |