Playlist

@objc(LwayvePlaylist)
public final class Playlist : NSObject

Contains information about the generated playlist.

  • The unique identifier of the playlist.

    Declaration

    Swift

    public let identifier: String
  • The value representing the date the playlist will be updated.

    Declaration

    Swift

    public let nextEventTime: Date?
  • The playlist items.

    Declaration

    Swift

    public let items: [PlaylistItem]
  • If shouldAutoRestart == false, then the user should press play button to play a new playlist. This is the default behaviour. If shouldAutoRestart == true, then a new playlist should start playing automaticaly.

    Declaration

    Swift

    public let shouldAutoRestart: Bool