Class AllocatedCardRequest
- java.lang.Object
-
- com.inteliqua.rest.system.allocatedcard.payload.AllocatedCardRequest
-
public class AllocatedCardRequest extends Object
Represents the request data for searching allocated cards. This class contains the necessary fields for querying allocated cards, including card number, member category, schema code, and optional card batch code.- Author:
- slevantis
-
-
Constructor Summary
Constructors Constructor Description AllocatedCardRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCardBatchCode()Gets the card batch code, if available.StringgetCardNumber()Gets the card number of the member.StringgetMemberCategory()Gets the member's category.StringgetSchemaCode()Gets the schema code associated with the member's card.voidsetCardBatchCode(String cardBatchCode)Sets the card batch code.voidsetCardNumber(String cardNumber)Sets the card number for the member.voidsetMemberCategory(String memberCategory)Sets the member's category.voidsetSchemaCode(String schemaCode)Sets the schema code for the member's card.
-
-
-
Method Detail
-
getCardNumber
public String getCardNumber()
Gets the card number of the member.- Returns:
- the card number
-
setCardNumber
public void setCardNumber(String cardNumber)
Sets the card number for the member.- Parameters:
cardNumber- the card number to set
-
getMemberCategory
public String getMemberCategory()
Gets the member's category.- Returns:
- the member's category
-
setMemberCategory
public void setMemberCategory(String memberCategory)
Sets the member's category.- Parameters:
memberCategory- the member category to set
-
getSchemaCode
public String getSchemaCode()
Gets the schema code associated with the member's card.- Returns:
- the schema code
-
setSchemaCode
public void setSchemaCode(String schemaCode)
Sets the schema code for the member's card.- Parameters:
schemaCode- the schema code to set
-
getCardBatchCode
public String getCardBatchCode()
Gets the card batch code, if available.- Returns:
- the card batch code
-
setCardBatchCode
public void setCardBatchCode(String cardBatchCode)
Sets the card batch code.- Parameters:
cardBatchCode- the card batch code to set
-
-