
com.squareup.square.core.BasePage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of square Show documentation
Show all versions of square Show documentation
Java client library for the Square API
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