# Types

The following types of variable exist and can be converted to others via conversion functions.

| Type             | Values                                            | Example                        |
| ---------------- | ------------------------------------------------- | ------------------------------ |
| `Bool`           | Either `True` or `False`                          |                                |
| `Number`         | Number                                            | 1, 2                           |
| `String`         | Text                                              |                                |
| `TimeSpan`       | Time Of Day information without date              | 12:34:58.114                   |
| `DateTime`       | Date and Time of a specific point in time         | 2024-02-29 12:34:58.114        |
| `DateTimeOffset` | Date, Time and Offset of a specific point in time | 2024-02-29 12:34:58.114 +02:00 |
