SingleMediaListItem

@Serializable
data class SingleMediaListItem(    val filename: String,     val creationTime: Int,     val modifiedTime: Int,     val fileSize: Int,     val lowResVideoSize: Int? = null,     val lowResFileSize: Int? = null,     val sessionId: String? = null,     val isRaw: Boolean? = null) : MediaListItem

Constructors

Link copied to clipboard
constructor(    filename: String,     creationTime: Int,     modifiedTime: Int,     fileSize: Int,     lowResVideoSize: Int? = null,     lowResFileSize: Int? = null,     sessionId: String? = null,     isRaw: Boolean? = null)

Properties

Link copied to clipboard
@SerialName(value = "cre")
open override val creationTime: Int
Link copied to clipboard
@SerialName(value = "n")
open override val filename: String
Link copied to clipboard
@SerialName(value = "s")
open override val fileSize: Int
Link copied to clipboard
@Serializable(with = StringAsBooleanSerializer::class)
@SerialName(value = "raw")
open override val isRaw: Boolean? = null
Link copied to clipboard
@SerialName(value = "ls")
open override val lowResFileSize: Int? = null
Link copied to clipboard
@SerialName(value = "glrv")
open override val lowResVideoSize: Int? = null
Link copied to clipboard
@SerialName(value = "mod")
open override val modifiedTime: Int
Link copied to clipboard
@SerialName(value = "id")
open override val sessionId: String? = null