I am trying to use realm with my android application. I tried looking in to some simple examples about realm. I was able to setup the project with realm and now want to start implementing it but facing problems to generate classed in accordance to my json response.
following is an example of json I will be using
{
"Status":true,
"Message":"Success",
"ds":{
"Table1":[{
"CustomerId":"1",
"CustomerName":"TestUser",
"CustomerNo":"100001",
"CustomerUrl":"http://abc-001-site10.itempurl.com",
"IsActive":true}]}}
I need to generate POJO class for this with RealmObject, how can I generate it as I am completely stumped.
I also will be using GSON along with this.
Need some guidance.