Enum DataType
- Namespace
- OverKizApi.Models
- Assembly
- OverKizApi.dll
Discriminates the CLR type of a State value as reported by the Overkiz API.
public enum DataType
Fields
Blob = 4Value is an opaque binary blob (Base64-encoded in JSON).
Boolean = 6Value is a boolean (
trueorfalse).Date = 13Value is a date/time represented as a Unix epoch millisecond timestamp.
Float = 2Value is a double-precision floating-point number.
Integer = 1Value is a 32-bit integer.
JsonArray = 10Value is a JSON array serialised as a string.
JsonObject = 11Value is a JSON object serialised as a string.
None = 0No value is present.
String = 3Value is a UTF-8 string.