com.github.twitch4j.kraken.domain.KrakenCollectionList Maven / Gradle / Ivy
package com.github.twitch4j.kraken.domain;
import lombok.*;
import java.util.List;
/**
* @deprecated Kraken is deprecated and has been shut down on Febuary 28, 2022.
* More details about the deprecation are available here.
*/
@Data
@Deprecated
@ToString(callSuper = true)
@Setter(AccessLevel.PRIVATE)
@EqualsAndHashCode(callSuper = true)
public class KrakenCollectionList extends AbstractResultList {
private List collections;
}