Class RedemptionLevelOther
- java.lang.Object
-
- com.inteliqua.rest.customer.payload.loyalty.redemptionlevel.LoyaltyRedemptionLevel
-
- com.inteliqua.rest.customer.payload.loyalty.redemptionlevel.RedemptionLevelOther
-
public class RedemptionLevelOther extends LoyaltyRedemptionLevel
Represents a redemption level where the reward is an arbitrary message or other non-standard reward. This class extendsLoyaltyRedemptionLeveland includes a message field for providing additional information or a non-monetary reward.- Author:
- nikritikos
-
-
Constructor Summary
Constructors Constructor Description RedemptionLevelOther()Default constructor required for JAX-RS (Java API for RESTful Web Services).RedemptionLevelOther(Integer points, String message, String memberCategoryCode, String memberTagCode, String memberStatusCode)Constructs a RedemptionLevelOther object with specified values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetMessage()Gets the message associated with this redemption level.voidsetMessage(String message)Sets the message for this redemption level.-
Methods inherited from class com.inteliqua.rest.customer.payload.loyalty.redemptionlevel.LoyaltyRedemptionLevel
getMemberCategoryCode, getMemberStatusCode, getMemberTagCode, getPoints, setMemberCategoryCode, setMemberStatusCode, setMemberTagCode, setPoints
-
-
-
-
Constructor Detail
-
RedemptionLevelOther
public RedemptionLevelOther()
Default constructor required for JAX-RS (Java API for RESTful Web Services).
-
RedemptionLevelOther
public RedemptionLevelOther(Integer points, String message, String memberCategoryCode, String memberTagCode, String memberStatusCode)
Constructs a RedemptionLevelOther object with specified values.- Parameters:
points- the number of points required for this redemption levelmessage- a custom message associated with this redemption levelmemberCategoryCode- the member category code for eligibilitymemberTagCode- the member tag code for eligibilitymemberStatusCode- the member status code for eligibility
-
-
Method Detail
-
getMessage
public String getMessage()
Gets the message associated with this redemption level.- Returns:
- the message for the redemption level
-
setMessage
public void setMessage(String message)
Sets the message for this redemption level.- Parameters:
message- the message to set for the redemption level
-
-