KaraokeSongResponseData

public struct KaraokeSongResponseData : Content

Wraps an array of KaraokeSongData with information for pagination. KaraokeSongData returns data about a single song.

Returned by: GET /api/v3/karaoke See KaraokeController.getKaraokeSongs().

  • How many songs are in the found set. The found set is sorted by Artist, then by Song Title. The found set may often be larger than songs.count.

    Declaration

    Swift

    var totalSongs: Int
  • The offset within the found set to begin returning results.

    Declaration

    Swift

    var start: Int
  • How many results to return.

    Declaration

    Swift

    var limit: Int
  • The array of songs that match

    Declaration

    Swift

    var songs: [KaraokeSongData]