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

com.withabound.resources.base.AboundErrorResponse 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.Optional;

/** The response body returned from Abound's APIs when the status code is 4xx or 5xx. */
public class AboundErrorResponse {
  private String message;

  private RequestMetadata request;

  public String getMessage() {
    return message;
  }

  public Optional getRequest() {
    return Optional.ofNullable(request);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy