com.labstack.StoreSearchResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of labstack-java Show documentation
Show all versions of labstack-java Show documentation
Official Java client library for the LabStack REST API
The newest version!
package com.labstack;
import java.util.List;
public class StoreSearchResponse {
private long total;
private List documents;
public long getTotal() {
return total;
}
public List getDocuments() {
return documents;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy