
net.interfax.rest.client.domain.GetUploadedDocumentsListOptions 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 GetUploadedDocumentsListOptions {
private Optional limit;
private Optional offset;
public Optional getLimit() {
return limit;
}
public void setLimit(final Optional limit) {
this.limit = limit;
}
public Optional getOffset() {
return offset;
}
public void setOffset(final Optional offset) {
this.offset = offset;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy