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

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

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

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

import java.util.List;

@Data
@Setter(AccessLevel.PRIVATE)
@NoArgsConstructor
public class BlockedTermList {

    /**
     * The list of blocked terms.
     * 

* The list is in descending order of when they were created (see the created_at timestamp). */ @JsonProperty("data") private List blockedTerms; /** * The information used to paginate the response data. */ private HelixPagination pagination; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy