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

com.github.twitch4j.helix.domain.StreamList Maven / Gradle / Ivy

The newest version!
package com.github.twitch4j.helix.domain;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.Setter;

import java.util.List;

/**
 * Stream List
 */
@Data
@Setter(onMethod_ = { @Deprecated })
public class StreamList {
    /**
     * Data
     */
    @JsonProperty("data")
    private List streams;

    private HelixPagination pagination;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy