Created
April 22, 2020 20:57
-
-
Save cdmunoz/fcb44d7aca46c3cdf7c3419d1591366e to your computer and use it in GitHub Desktop.
Photo data class to model rover photo object
This file contains hidden or 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
| @Parcelize | |
| data class Photo(@SerializedName("camera") val camera: Camera, | |
| @SerializedName("earth_date") val earthDate: String, | |
| @SerializedName("id") val id: String, | |
| @SerializedName("img_src") val imgSrc: String, | |
| @SerializedName("rover") val rover: Rover, | |
| @SerializedName("sol") val sol: String) : Parcelable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment