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

com.squareup.square.core.BasePage Maven / Gradle / Ivy

The newest version!
/**
 * This file was auto-generated by Fern from our API Definition.
 */
package com.squareup.square.core;

import java.util.List;

public abstract class BasePage {
    private final boolean hasNext;
    private final List items;

    public BasePage(boolean hasNext, List items) {
        this.hasNext = hasNext;
        this.items = items;
    }

    public boolean hasNext() {
        return !items.isEmpty() && hasNext;
    }

    public List getItems() {
        return items;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy