Class MemberBookCouponGroupRequest
- java.lang.Object
-
- com.inteliqua.rest.customer.payload.bookcoupongroup.request.MemberBookCouponGroupRequest
-
- All Implemented Interfaces:
JsonAuditLog
public class MemberBookCouponGroupRequest extends Object implements JsonAuditLog
Represents a request to redeem a book coupon group for a member.This class contains the information needed to perform actions on a book coupon group, such as redeeming points and associating a book coupon group with a member. The action could be assigning or redeeming the coupon group as part of the redemption process.
- Author:
- mtavlopoulou
-
-
Constructor Summary
Constructors Constructor Description MemberBookCouponGroupRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BookCouponGroupActiongetAction()Gets the action to be performed on the book coupon group.StringgetBookCouponGroupCode()Gets the book coupon group code.StringgetBookCouponGroupTemplateCode()Gets the book coupon group template code.IntegergetPointsToRedeem()Gets the number of points to be redeemed.StringgetRemarks()Gets remarks for the points log.voidsetAction(BookCouponGroupAction action)Sets the action to be performed on the book coupon group.voidsetBookCouponGroupCode(String bookCouponGroupCode)Sets the book coupon group code.voidsetBookCouponGroupTemplateCode(String bookCouponGroupTemplateCode)Sets the book coupon group template code.voidsetPointsToRedeem(Integer pointsToRedeem)Sets the number of points to be redeemed.voidsetRemarks(String remarks)Sets remarks for the points log.
-
-
-
Method Detail
-
getPointsToRedeem
public Integer getPointsToRedeem()
Gets the number of points to be redeemed.- Returns:
- The points to redeem.
-
setPointsToRedeem
public void setPointsToRedeem(Integer pointsToRedeem)
Sets the number of points to be redeemed.- Parameters:
pointsToRedeem- The points to redeem.
-
getBookCouponGroupTemplateCode
public String getBookCouponGroupTemplateCode()
Gets the book coupon group template code.- Returns:
- The book coupon group template code.
-
setBookCouponGroupTemplateCode
public void setBookCouponGroupTemplateCode(String bookCouponGroupTemplateCode)
Sets the book coupon group template code.- Parameters:
bookCouponGroupTemplateCode- The book coupon group template code.
-
getBookCouponGroupCode
public String getBookCouponGroupCode()
Gets the book coupon group code.- Returns:
- The book coupon group code.
-
setBookCouponGroupCode
public void setBookCouponGroupCode(String bookCouponGroupCode)
Sets the book coupon group code.- Parameters:
bookCouponGroupCode- The book coupon group code.
-
getAction
public BookCouponGroupAction getAction()
Gets the action to be performed on the book coupon group.- Returns:
- The action.
-
setAction
public void setAction(BookCouponGroupAction action)
Sets the action to be performed on the book coupon group.- Parameters:
action- The action to be performed.
-
getRemarks
public String getRemarks()
Gets remarks for the points log.- Returns:
- The remarks.
-
setRemarks
public void setRemarks(String remarks)
Sets remarks for the points log.- Parameters:
remarks- The remarks for the points log.
-
-