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