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

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

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

import lombok.AccessLevel;
import lombok.Data;
import lombok.Setter;

import java.util.List;

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

    /**
     * Information about the channel's unban requests.
     */
    private List data;

    /**
     * Contains information used to page through a 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