package com.applicaster.oasisplayer.config.playable data class PlayableConfig( val parsedPlayerConfigId: String?, val playableId: String?, val contentType: PlayableContentType, val title: String? = null, val desc:String? = null, val clipId: String? = null, val streamCountry: String? = null ) enum class PlayableContentType(val id: String) { LIVE("live"), VOD("vod") }