Skip to content

Instantly share code, notes, and snippets.

@AlexGladkov
Created February 26, 2021 13:57
Show Gist options
  • Save AlexGladkov/8eb8c27ba03118471b00ee34ddfa32ac to your computer and use it in GitHub Desktop.
Save AlexGladkov/8eb8c27ba03118471b00ee34ddfa32ac to your computer and use it in GitHub Desktop.
Gist parse
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