com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected an int but was BOOLEAN at line 1 column 323 path $.data.Status

com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected an int but was BOOLEAN at line 1 column 323 path $.data.Status

By      09-Sep-2023    2

Solutions


Junaid A

Solution:

this issue is related to "DataTypes". status data type is int but you are passing boolean.

It will be fixed you double check data type.

Your Answer

10065