Package com.adyen.model.nexo
Class LoyaltyAccountReq
- java.lang.Object
-
- com.adyen.model.nexo.LoyaltyAccountReq
-
public class LoyaltyAccountReq extends Object
Definition: Data related to a requested Loyalty program or account. -- Usage: In the Balance Inquiry Request messageType, the Sale Terminal sends the identification of the loyalty account to request the balance.Java class for LoyaltyAccountReq complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="LoyaltyAccountReq"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="CardAcquisitionReference" type="{}TransactionIdentification" minOccurs="0"/> <element name="LoyaltyAccountID" type="{}LoyaltyAccountID" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected TransactionIdentificationcardAcquisitionReferenceThe Card acquisition reference.protected LoyaltyAccountIDloyaltyAccountIDThe Loyalty account id.
-
Constructor Summary
Constructors Constructor Description LoyaltyAccountReq()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TransactionIdentificationgetCardAcquisitionReference()Gets the value of the cardAcquisitionReference property.LoyaltyAccountIDgetLoyaltyAccountID()Gets the value of the loyaltyAccountID property.voidsetCardAcquisitionReference(TransactionIdentification value)Sets the value of the cardAcquisitionReference property.voidsetLoyaltyAccountID(LoyaltyAccountID value)Sets the value of the loyaltyAccountID property.
-
-
-
Field Detail
-
cardAcquisitionReference
protected TransactionIdentification cardAcquisitionReference
The Card acquisition reference.
-
loyaltyAccountID
protected LoyaltyAccountID loyaltyAccountID
The Loyalty account id.
-
-
Method Detail
-
getCardAcquisitionReference
public TransactionIdentification getCardAcquisitionReference()
Gets the value of the cardAcquisitionReference property.- Returns:
- possible object is
TransactionIdentification
-
setCardAcquisitionReference
public void setCardAcquisitionReference(TransactionIdentification value)
Sets the value of the cardAcquisitionReference property.- Parameters:
value- allowed object isTransactionIdentification
-
getLoyaltyAccountID
public LoyaltyAccountID getLoyaltyAccountID()
Gets the value of the loyaltyAccountID property.- Returns:
- possible object is
LoyaltyAccountID
-
setLoyaltyAccountID
public void setLoyaltyAccountID(LoyaltyAccountID value)
Sets the value of the loyaltyAccountID property.- Parameters:
value- allowed object isLoyaltyAccountID
-
-