Skip to content

Instantly share code, notes, and snippets.

@agustarc
Created January 6, 2017 13:37
Show Gist options
  • Save agustarc/7025de634bb2bb774da1118610fc9292 to your computer and use it in GitHub Desktop.
Save agustarc/7025de634bb2bb774da1118610fc9292 to your computer and use it in GitHub Desktop.
@AutoValue
public abstract class Product {
@SerializedName("id")
public abstract long getId();
@SerializedName("name")
public abstract String getName();
@SerializedName("price")
public abstract float getPrice();
public static TypeAdapter<Product> typeAdapter(Gson gson) {
return new AutoValue_Product.GsonTypeAdapter(gson);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment