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

com.withabound.resources.base.AboundResponse 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 lombok.Getter;

/**
 * Represents the object returned by Abound's APIs that return a single element of underlying domain
 * data.
 *
 * 

See {@link AboundBulkResponse} for the corresponding object that holds many elements. * * @param type parameter for the underlying data element */ @Getter public class AboundResponse { private T data; private RequestMetadata request; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy