I have a JSON array with a lot of entries and want to deserialize each check into a single object with gson. My problem is to find the proper object structure for it.
You need to set the annotation like this to use GSON
public class Client { @SerializedName("client") public String client; @SerializedName("check") public Check check; }