Skip to content

Instantly share code, notes, and snippets.

@mikepyts
Created April 20, 2019 19:23
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 mikepyts/febbddcbbbdc9769d01b5fdb0079d251 to your computer and use it in GitHub Desktop.
Save mikepyts/febbddcbbbdc9769d01b5fdb0079d251 to your computer and use it in GitHub Desktop.
// Data classes for JSON deserialization
data class JsonTable(@SerializedName("rows") val rows: List<Row>) {
data class Row(@SerializedName("f") val f: List<F>) {
data class F(@SerializedName("v") val v: String)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment