How to create custom GsonConverter from following response?

Use these Model classes and pass your response directly through Gson com.example.ACCESSORIES.java package com.example; import java.util.List; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; public class ACCESSORIES { @SerializedName(“accessories”) @Expose private List<Accessory> accessories = null; public List<Accessory> getAccessories() { return accessories; } public void setAccessories(List<Accessory> accessories) { this.accessories = accessories; } } com.example.Accessory.java package com.example; import java.util.List; import com.google.gson.annotations.Expose; … Read more