TVShow
data class TVShow(val seriesID: String, val seriesName: String, val seasonNumber: String, val episodeNumber: String, val episodeName: String, val id: String, val type: String, val name: String, val streamType: PlayerStreamType, val providerID: String? = null, val genre: String? = null, val licenseWindowStartDate: String? = null, val channel: String? = null, val data: MutableMap<String, Any> = mutableMapOf(), var brand: String? = null, var affiliate: String? = null, var assetProviderName: String? = null, var cdnName: String? = null) : Content
Represents video content reporting data payload that is specific to TV show.
Constructors
Link copied to clipboard
constructor(seriesID: String, seriesName: String, seasonNumber: String, episodeNumber: String, episodeName: String, id: String, type: String, name: String, streamType: PlayerStreamType, providerID: String? = null, genre: String? = null, licenseWindowStartDate: String? = null, channel: String? = null, data: MutableMap<String, Any> = mutableMapOf(), brand: String? = null, affiliate: String? = null, assetProviderName: String? = null, cdnName: String? = null)
Properties
Link copied to clipboard
Name of CMS Provider
Link copied to clipboard
The data payload container.
Link copied to clipboard
Link copied to clipboard
The number of one of the episodes in the TV show series.
Link copied to clipboard
The license window start date (from content metadata). The clear content may not have LWSD. This value is optional if unknown.
Link copied to clipboard
The content's provider identifier. This value is optional if unknown.
Link copied to clipboard
The season number of the TV show series.
Link copied to clipboard
The name of the TV show series.
Link copied to clipboard