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

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

package com.github.twitch4j.helix.domain;

import lombok.AccessLevel;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.Setter;
import org.jetbrains.annotations.Nullable;

/**
 * Pagination
 */
@Data
@Setter(AccessLevel.PRIVATE)
@NoArgsConstructor
public class HelixPagination {

    /**
     * The cursor used to get the next page of results. Use the cursor to set the request’s after query parameter.
     */
    @Nullable
    private String cursor;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy