Enum ValueKind
The kind of JSON value a Value represents.
Namespace: Unity.Cloud.Gltfast.Objects
Assembly: Unity.Cloud.Gltfast.dll
Syntax
public enum ValueKind : byte
Fields
| Name | Description |
|---|---|
| Array | A JSON array. |
| False | The JSON literal |
| Null | The JSON literal |
| Number | A JSON number. |
| Object | A JSON object (a set of key/value properties). |
| String | A JSON string. |
| True | The JSON literal |
| Undefined | No value (as distinct from Null). |