Class RedemptionLevelCoupon
- java.lang.Object
-
- com.inteliqua.rest.customer.payload.loyalty.redemptionlevel.LoyaltyRedemptionLevel
-
- com.inteliqua.rest.customer.payload.loyalty.redemptionlevel.RedemptionLevelCoupon
-
public class RedemptionLevelCoupon extends LoyaltyRedemptionLevel
Represents a redemption level where the reward is a set of coupons. This class extendsLoyaltyRedemptionLeveland includes a property for the coupon set code associated with the redemption level. The coupon set code defines which set of coupons is available for the redemption.- Author:
- nikritikos
-
-
Constructor Summary
Constructors Constructor Description RedemptionLevelCoupon()Default constructor required for JAX-RS (Java API for RESTful Web Services).RedemptionLevelCoupon(Integer points, String couponSetCode, String memberCategoryCode, String memberTagCode, String memberStatusCode)Constructs a RedemptionLevelCoupon object with specified values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCouponSetCode()Gets the coupon set code for the redemption level.voidsetCouponSetCode(String couponSetCode)Sets the coupon set code for the redemption level.-
Methods inherited from class com.inteliqua.rest.customer.payload.loyalty.redemptionlevel.LoyaltyRedemptionLevel
getMemberCategoryCode, getMemberStatusCode, getMemberTagCode, getPoints, setMemberCategoryCode, setMemberStatusCode, setMemberTagCode, setPoints
-
-
-
-
Constructor Detail
-
RedemptionLevelCoupon
public RedemptionLevelCoupon()
Default constructor required for JAX-RS (Java API for RESTful Web Services).
-
RedemptionLevelCoupon
public RedemptionLevelCoupon(Integer points, String couponSetCode, String memberCategoryCode, String memberTagCode, String memberStatusCode)
Constructs a RedemptionLevelCoupon object with specified values.- Parameters:
points- the number of points required for this redemption levelcouponSetCode- the coupon set code for this redemption levelmemberCategoryCode- the member category code for eligibilitymemberTagCode- the member tag code for eligibilitymemberStatusCode- the member status code for eligibility
-
-
Method Detail
-
getCouponSetCode
public String getCouponSetCode()
Gets the coupon set code for the redemption level.- Returns:
- the coupon set code
-
setCouponSetCode
public void setCouponSetCode(String couponSetCode)
Sets the coupon set code for the redemption level.- Parameters:
couponSetCode- the coupon set code to set
-
-