
net.interfax.rest.client.domain.GetInboundFaxListOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-client Show documentation
Show all versions of api-client Show documentation
Library that enables using InterFAX HTTP APIs using Java
package net.interfax.rest.client.domain;
import java.util.Optional;
public class GetInboundFaxListOptions {
private Optional unreadOnly = Optional.empty();
private Optional limit = Optional.empty();
private Optional lastId = Optional.empty();
private Optional allUsers = Optional.empty();
public Optional getUnreadOnly() {
return unreadOnly;
}
public void setUnreadOnly(final Optional unreadOnly) {
this.unreadOnly = unreadOnly;
}
public Optional getLimit() {
return limit;
}
public void setLimit(final Optional limit) {
this.limit = limit;
}
public Optional getLastId() {
return lastId;
}
public void setLastId(final Optional lastId) {
this.lastId = lastId;
}
public Optional getAllUsers() {
return allUsers;
}
public void setAllUsers(final Optional allUsers) {
this.allUsers = allUsers;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy