Created
June 10, 2019 01:52
-
-
Save d108/4169cd7e529308bce0646a561fbf4bb9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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