ErrorMessageData

data class ErrorMessageData(val audio: String?, val duration: Long?, val log: String, val message: String, val name: String, val position: Long?, val positionTimestamp: Long?, val subtitles: String?, val url: String) : MessageData

Represents a Player error to send to a monitoring server.

Constructors

Link copied to clipboard
constructor(audio: String?, duration: Long?, log: String, message: String, name: String, position: Long?, positionTimestamp: Long?, subtitles: String?, url: String)
constructor(throwable: Throwable, player: Player, url: String)

Properties

Link copied to clipboard

The audio track language code.

Link copied to clipboard

The duration of the media being played, in milliseconds.

Link copied to clipboard
val log: String

The log associated with the error.

Link copied to clipboard

The error message.

Link copied to clipboard

The name of the error.

Link copied to clipboard

The playback position, in milliseconds, when the error occurred.

Link copied to clipboard
@SerialName(value = "position_timestamp")
val positionTimestamp: Long?

The current player timestamp, as retrieved from the playlist.

Link copied to clipboard

The subtitles language code (CC, subtitles or forced subtitles).

Link copied to clipboard
val url: String

The last loaded url.