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

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

package com.github.twitch4j.helix.domain;

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

import java.util.List;

@Data
@Setter(AccessLevel.PRIVATE)
public class ModeratedChannelList {

    /**
     * The channels that the user has moderator privileges in.
     */
    @JsonProperty("data")
    private List channels;

    /**
     * Contains the information used to page through the list of results.
     * The object is empty if there are no more pages left to page through.
     */
    private HelixPagination pagination;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy