Skip to content

Instantly share code, notes, and snippets.

@d108
Created June 10, 2019 01:52
Show Gist options
  • Save d108/4169cd7e529308bce0646a561fbf4bb9 to your computer and use it in GitHub Desktop.
Save d108/4169cd7e529308bce0646a561fbf4bb9 to your computer and use it in GitHub Desktop.
data class Daily
(
@Json(name = "1. open")
val open: String,
@Json(name = "2. high")
val high: String,
@Json(name = "3. low")
val low: String,
@Json(name = "4. close")
val close: String,
@Json(name = "5. adjusted close")
val adjustedClose: String,
@Json(name = "6. volume")
val volume: String,
@Json(name = "7. dividend amount")
val dividendAmount: String,
@Json(name = "8. split coefficient")
val splitCoefficient: String
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment