Created
February 26, 2021 13:57
-
-
Save AlexGladkov/8eb8c27ba03118471b00ee34ddfa32ac to your computer and use it in GitHub Desktop.
Gist parse
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 GistResponse( | |
val url: String, | |
..., | |
val files: FilesRemote | |
) | |
data class FilesRemote( | |
val filename: FilesFilename | |
) | |
data class FilesFilename( | |
val filename: String, | |
val type: String, | |
val language: String?, | |
.... | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment