Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add MediaType to Section #69

Merged
merged 3 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ object Config {
const val minSdk = 21

const val major = 0
const val minor = 12
const val minor = 13
const val patch = 0
const val versionName = "$major.$minor.$patch"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ object RepresentationType {
const val TopicSelector = "TopicSelector"
const val Livestreams = "Livestreams"
const val ContinueWatching = "ContinueWatching"
const val ContinueStreaming = "ContinueStreaming"
const val FavoriteShows = "FavoriteShows"
const val WatchLater = "WatchLater"
const val ExpiringSoon = "ExpiringSoon"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ data class Section(
@SerialName("end")
val endDate: Date? = null,
val hasPersonalizedContent: Boolean? = null,
val mediaType: MediaType? = null,
) : ILObject
Loading