Song

@Serializable
data class Song(val id: Long, val name: String? = null)

Information about a song unlocked by a character.

Parameters

id

the song's ID

name

an unlocalized name describing the song

Constructors

Link copied to clipboard
constructor(id: Long, name: String? = null)

Properties

Link copied to clipboard
val id: Long

This field holds the song's ID.

Link copied to clipboard
val name: String?

This field holds an unlocalized name describing the song.