pl.rspective.voucherify.client.model.VoucherValidationContext 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;
public class VoucherValidationContext {
private final Customer customer;
private final Order order;
public VoucherValidationContext(Customer customer) {
this(customer, null);
}
public VoucherValidationContext(Customer customer, Order order) {
this.customer = customer;
this.order = order;
}
public Customer getCustomer() {
return customer;
}
public Order getOrder() {
return order;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy