com.github.twitch4j.kraken.domain.AbstractResultList Maven / Gradle / Ivy
package com.github.twitch4j.kraken.domain;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
/**
* Abstract base for result lists.
* @deprecated Kraken is deprecated and has been shut down on Febuary 28, 2022.
* More details about the deprecation are available here.
*/
@Data
@Deprecated
public abstract class AbstractResultList {
/**
* Cursor
*/
@JsonProperty("_cursor")
private String cursor;
/**
* Total Entries
*/
@JsonProperty("_total")
private Long total;
}