I am using gson library to handle json to body conversion. below code returns null value for toJson() method. can some one please suggest me if i miss anything.
Fruits fruits = new Fruits() {
{
setName("mango");
setPrice(10);
}
};
String body = gson.toJson(fruits);