KaraokePlayedSong
final class KaraokePlayedSong : ModelThis is the object a Karaoke Manager makes when they log a karaoke performance in the Karaoke Lounge.
The played song is related to a song in the Karaoke Library, and the Manager records the name(s) of the karaoke singer(s). A timestamp is added automatically.
- 
                  
                  DeclarationSwift static let schema: String
- 
                  
                  The song’s ID, provisioned automatically. DeclarationSwift @ID var id: UUID?
- 
                  
                  Who sung the song. Freeform; if multiple people sang the song onstage together, multiple names may be entered. @username tags may be used if the singers have Twit-arr accounts. DeclarationSwift @Field var performers: String
- 
                  
                  Timestamp of the model’s creation, set automatically. DeclarationSwift @Timestamp var createdAt: Date?
- 
                  
                  The song that was sung. DeclarationSwift @Parent var song: KaraokeSong
- 
                  
                  The Karaoke Manager that created the entry. DeclarationSwift @Parent var manager: User
- 
                  
                  DeclarationSwift init()
- 
                  
                  DeclarationSwift init(singer: String, song: KaraokeSong, managerID: UUID) throws
 View on GitHub
            View on GitHub
           KaraokePlayedSong Class Reference
      KaraokePlayedSong Class Reference