com.withabound.resources.base.AboundBulkResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of withabound-java Show documentation
Show all versions of withabound-java Show documentation
The Abound Java SDK provides convenient access to the Abound API from applications written in Java.
The newest version!
package com.withabound.resources.base;
import java.util.List;
import lombok.Getter;
/**
* Represents the object returned by Abound's APIs that return many elements of the underlying
* domain data.
*
* See {@link AboundResponse} for the corresponding object that holds a single element.
*
* @param type parameter for the underlying data elements
*/
@Getter
public class AboundBulkResponse {
private List data;
private int count;
private String nextPage;
private RequestMetadata request;
}