com.github.twitch4j.helix.domain.VideoMarkers Maven / Gradle / Ivy
The newest version!
package com.github.twitch4j.helix.domain;
import lombok.*;
import java.util.List;
/**
* Model representing a stream.
*
* A stream is a channel, that is currently streaming live.
*/
@Data
@Setter(AccessLevel.PRIVATE)
@NoArgsConstructor
public class VideoMarkers {
/** Stream ID. */
@NonNull
private String videoId;
/** Markers */
@NonNull
private List markers;
}