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

com.withabound.resources.base.AboundBulkResponse Maven / Gradle / Ivy

Go to download

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; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy