Data Types
Data Type | Description |
---|---|
string | A sequence of zero or more Unicode characters. |
char | UTF-16 Unicode character. |
int | Signed 32-bit integer. Range is -2,147,483,648 to 2,147,483,647 |
double | 64-bit double-precision number with values ranging from negative 1.79769313486232e308 to positive 1.79769313486232e308 |
bool | The bool type represents Boolean logical quantities. The possible values of type bool are true or false. |
binary | array of 8-bit bytes. |