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

com.withabound.models.documents.Document 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.models.documents;

import java.util.Optional;

/** See https://docs.withabound.com/reference/documents */
public class Document {
  private String documentId;

  private String documentURL;

  private String documentName;

  private DocumentType type;

  private String year;

  private String status;

  private String message;

  private Long createdTimestamp;

  public Optional getDocumentId() {
    return Optional.ofNullable(documentId);
  }

  public Optional getDocumentURL() {
    return Optional.ofNullable(documentURL);
  }

  public String getDocumentName() {
    return documentName;
  }

  public DocumentType getType() {
    return type;
  }

  public String getYear() {
    return year;
  }

  public Optional getStatus() {
    return Optional.ofNullable(status);
  }

  public Optional getMessage() {
    return Optional.ofNullable(message);
  }

  public Long getCreatedTimestamp() {
    return createdTimestamp;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy