pl.rspective.voucherify.client.model.VoucherPublish Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of voucherify-java-sdk Show documentation
Show all versions of voucherify-java-sdk Show documentation
Voucherify-java-sdk is a Java client (can be used in Android application as well) which was created to simplify integration with Voucherify backend (http://www.voucherify.io)
package pl.rspective.voucherify.client.model;
import java.util.Collections;
import java.util.List;
public class VoucherPublish {
private int count;
private List entries;
public VoucherPublish() {
this.count = 0;
this.entries = Collections.emptyList();
}
public int getCount() {
return count;
}
public List getEntries() {
return entries;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy