All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.rspective.voucherify.client.model.VoucherPublish Maven / Gradle / Ivy

Go to download

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)

There is a newer version: 4.2.0
Show newest version
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