Data Type MappingsΒΆ
Data types used in this documentation map to different data structures or constructs depending on the used programming language. The following table shows the corresponding mappings.
| Language | bool | int | float | String | List | JSON |
|---|---|---|---|---|---|---|
| C++ | bool | int | double | std::string | std::vector | Json::Value |
| Java | boolean | int | double | String | Array | org.json.JSONObject |
| Python | bool | int | float | str | list | json |
| Java | bool | int | float | char | list | py.json |