Calling an API returning two variables, "allowed" which is a boolean and "message" which is a string.
It errors out
{F1171012}
Now, transforming the boolean to an integer, it works :
{F1171014}
The CallBack's OnSuccess method doesn't change between the two screenshots.
My OnConnectData which cause the error is :
```
class OnConnectData
{
bool allowed;
string message;
}
```