Upgrade to Pro — share decks privately, control downloads, hide ads and more …

potatotips-28

 potatotips-28

Yuya Kaido

April 20, 2016
Tweet

More Decks by Yuya Kaido

Other Decks in Programming

Transcript

  1. Α͋͘Δྫ • GitHub Wiki • Google Spreadsheet  Ϩεϙϯε͕࢓༷ॻͱҧ͏Μ͚ͩͲ σϓϩΠ଴ͪͰ։ൃετοϓ

    ୭΋ϝϯς͠ͳ͍໰୊ ςετίʔυͱ࢓༷ॻ͕ζϨ͍ͯΔ໰୊ Wiki͸ͳΜͱͳ͘ςϯγϣϯ্͕͕Βͳ͍
  2. ΫϥΠΞϯτίʔυ • ϨεϙϯεͷೖΕ෺Ϋϥε  GET /items {
 "items": [
 {


    "id": 0,
 "name": "foo",
 }, {
 "id": 1,
 "name": "bar",
 }
 ]
 } public class ItemResponse {
 
 @SerializedName("items")
 public List<Item> items;
 
 public static class Item {
 @SerializedName("id")
 public Long id;
 @SerializedName("name")
 public String name;
 }
 
 } ItemResponse