Slide 14
Slide 14 text
ΫϥΠΞϯτίʔυ
• ϨεϙϯεͷೖΕΫϥε
GET /items
{
"items": [
{
"id": 0,
"name": "foo",
},
{
"id": 1,
"name": "bar",
}
]
}
public class ItemResponse {
@SerializedName("items")
public List items;
public static class Item {
@SerializedName("id")
public Long id;
@SerializedName("name")
public String name;
}
}
ItemResponse