CustomBookmarkData

@JsonClass(generateAdapter = true)
data class CustomBookmarkData(@Json(name = "contentId") val contentId: String? = null, @Json(name = "seasonId") val seasonId: String? = null, @Json(name = "episodeId") val episodeId: String? = null, @Json(name = "seasonNumber") val seasonNumber: Int? = null, @Json(name = "episodeNumber") val episodeNumber: Int? = null, @Json(name = "mode") val mode: String? = null, @Json(name = "nextEpisodeDetails") val nextEpisodeDetails: BookmarksPutRecord? = null, @Json(name = "cty") val contentType: String? = null)

Data containing a Episode information.

Constructors

Link copied to clipboard
constructor(@Json(name = "contentId") contentId: String? = null, @Json(name = "seasonId") seasonId: String? = null, @Json(name = "episodeId") episodeId: String? = null, @Json(name = "seasonNumber") seasonNumber: Int? = null, @Json(name = "episodeNumber") episodeNumber: Int? = null, @Json(name = "mode") mode: String? = null, @Json(name = "nextEpisodeDetails") nextEpisodeDetails: BookmarksPutRecord? = null, @Json(name = "cty") contentType: String? = null)

Creates CustomBookmarkData instance

Properties

Link copied to clipboard
val contentId: String? = null
Link copied to clipboard
val contentType: String? = null

Type of the content (movie, tvseries).

Link copied to clipboard
val episodeId: String? = null

The unique identifier of the episode of a content.

Link copied to clipboard
val episodeNumber: Int? = null

The content's episode number in a season.

Link copied to clipboard
val mode: String? = null

Type of the content (series, episode, or playlist).

Link copied to clipboard

Details of the next content.

Link copied to clipboard
val seasonId: String? = null

The unique identifier of the season of a content.

Link copied to clipboard
val seasonNumber: Int? = null

The content's season number.