Table of Contents

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 = 4

Value is an opaque binary blob (Base64-encoded in JSON).

Boolean = 6

Value is a boolean (true or false).

Date = 13

Value is a date/time represented as a Unix epoch millisecond timestamp.

Float = 2

Value is a double-precision floating-point number.

Integer = 1

Value is a 32-bit integer.

JsonArray = 10

Value is a JSON array serialised as a string.

JsonObject = 11

Value is a JSON object serialised as a string.

None = 0

No value is present.

String = 3

Value is a UTF-8 string.