io.voucherify.client.model.customer.response.CustomerRedemptionSummary 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 io.voucherify.client.model.customer.response;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.ToString;
@NoArgsConstructor(access = AccessLevel.PRIVATE)
@AllArgsConstructor(access = AccessLevel.PRIVATE)
@Getter
@ToString
class CustomerRedemptionSummary {
@JsonProperty("total_redemeed")
private Integer totalRedeemed;
@JsonProperty("total_failed")
private Integer totalFailed;
@JsonProperty("total_succeeded")
private Integer totalSucceeded;
@JsonProperty("total_rolled_back")
private Integer totalRolledBack;
@JsonProperty("total_rollback_failed")
private Integer totalRollbackFailed;
@JsonProperty("total_rollback_succeeded")
private Integer totalRollbackSucceeded;
private GiftRedemptionSummary gift;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy