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