All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy