Skip to content

Commit

Permalink
Add playList field to SpeakerAudioAttributes
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdgeisler committed Nov 28, 2022
1 parent e8be0ca commit 82673d5
Showing 1 changed file with 15 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,24 @@
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import de.dvdgeisler.iot.dirigera.client.api.model.music.MusicPlayItem;
import de.dvdgeisler.iot.dirigera.client.api.model.music.MusicPlayList;

@JsonInclude(Include.NON_NULL)
public class SpeakerAudioAttributes {
public String serviceType;
public String providerType;
public MusicPlayItem playItem;
public MusicPlayItem nextPlayItem;
public String serviceType;
public String providerType;
public MusicPlayItem playItem;
public MusicPlayItem nextPlayItem;
public MusicPlayList playList;

public SpeakerAudioAttributes() {
}
public SpeakerAudioAttributes() {
}

public SpeakerAudioAttributes(String serviceType, String providerType, MusicPlayItem playItem,
MusicPlayItem nextPlayItem) {
this.serviceType = serviceType;
this.providerType = providerType;
this.playItem = playItem;
this.nextPlayItem = nextPlayItem;
}
public SpeakerAudioAttributes(final String serviceType, final String providerType, final MusicPlayItem playItem, final MusicPlayItem nextPlayItem, final MusicPlayList playList) {
this.serviceType = serviceType;
this.providerType = providerType;
this.playItem = playItem;
this.nextPlayItem = nextPlayItem;
this.playList = playList;
}
}

0 comments on commit 82673d5

Please sign in to comment.