Skip to content

Instantly share code, notes, and snippets.

@appsoluut
Created May 20, 2018 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save appsoluut/7f11ca4930a136c75b60689813c46722 to your computer and use it in GitHub Desktop.
Save appsoluut/7f11ca4930a136c75b60689813c46722 to your computer and use it in GitHub Desktop.
Article POJO
@AutoValue
public abstract class Article {
@SerializedName("title")
public abstract String title();
@SerializedName("blocks")
public abstract List<Block> blocks();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment