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

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

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 ExtensionTransactionList {

    /**
     * Array of requested transactions.
     */
    @JsonProperty("data")
    private List transactions;

    /**
     * If provided, is the key used to fetch the next page of data. If not provided, the current response is the last page of data available.
     */
    private HelixPagination pagination;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy