LyricLineCue

@Serializable
data class LyricLineCue(val position: Int, val endPosition: Int, val start: Long, val end: Long? = null)

LyricLineCue model, holds information about the timing of words within a LyricLine.

Constructors

Link copied to clipboard
constructor(position: Int, endPosition: Int, start: Long, end: Long? = null)

Properties

Link copied to clipboard
@SerialName(value = "End")
val end: Long?

The end timestamp the lyric is synced to in ticks.

Link copied to clipboard
@SerialName(value = "EndPosition")
val endPosition: Int

The end character index of the cue.

Link copied to clipboard
@SerialName(value = "Position")
val position: Int

The start character index of the cue.

Link copied to clipboard
@SerialName(value = "Start")
val start: Long

The timestamp the lyric is synced to in ticks.