forked from maxrave-dev/SimpMusic
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
85c6492
commit 365e670
Showing
17 changed files
with
300 additions
and
212 deletions.
There are no files selected for viewing
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
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
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
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
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
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
47 changes: 47 additions & 0 deletions
47
app/src/main/java/com/maxrave/simpmusic/data/model/streams/Streams.kt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
package com.maxrave.simpmusic.data.model.streams | ||
|
||
|
||
import com.google.gson.annotations.SerializedName | ||
|
||
data class Streams( | ||
@SerializedName("audioTrackId") | ||
val audioTrackId: Any, | ||
@SerializedName("audioTrackLocale") | ||
val audioTrackLocale: Any, | ||
@SerializedName("audioTrackName") | ||
val audioTrackName: Any, | ||
@SerializedName("audioTrackType") | ||
val audioTrackType: Any, | ||
@SerializedName("bitrate") | ||
val bitrate: Int, | ||
@SerializedName("codec") | ||
val codec: String, | ||
@SerializedName("contentLength") | ||
val contentLength: Int, | ||
@SerializedName("format") | ||
val format: String, | ||
@SerializedName("fps") | ||
val fps: Int, | ||
@SerializedName("height") | ||
val height: Int, | ||
@SerializedName("indexEnd") | ||
val indexEnd: Int, | ||
@SerializedName("indexStart") | ||
val indexStart: Int, | ||
@SerializedName("initEnd") | ||
val initEnd: Int, | ||
@SerializedName("initStart") | ||
val initStart: Int, | ||
@SerializedName("itag") | ||
val itag: Int, | ||
@SerializedName("mimeType") | ||
val mimeType: String, | ||
@SerializedName("quality") | ||
val quality: String, | ||
@SerializedName("url") | ||
val url: String, | ||
@SerializedName("videoOnly") | ||
val videoOnly: Boolean, | ||
@SerializedName("width") | ||
val width: Int | ||
) |
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
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
Oops, something went wrong.