Package com.adyen.model.nexo
Class LoyaltyTotals
- java.lang.Object
-
- com.adyen.model.nexo.LoyaltyTotals
-
public class LoyaltyTotals extends Object
Definition: Totals of the loyalty transaction during the reconciliation period.Java class for LoyaltyTotals complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="LoyaltyTotals"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="Transaction" use="required" type="{}TransactionType" /> <attribute name="TransactionCount" use="required" type="{}TransactionCount" /> <attribute name="TransactionAmount" use="required" type="{}SimpleAmountType" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected BigDecimaltransactionAmountThe Transaction amount.protected BigIntegertransactionCountThe Transaction count.protected TransactionTypetransactionTypeThe Transaction.
-
Constructor Summary
Constructors Constructor Description LoyaltyTotals()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigDecimalgetTransactionAmount()Gets the value of the transactionAmount property.BigIntegergetTransactionCount()Gets the value of the transactionCount property.TransactionTypegetTransactionType()Gets the value of the transactionType property.voidsetTransactionAmount(BigDecimal value)Sets the value of the transactionAmount property.voidsetTransactionCount(BigInteger value)Sets the value of the transactionCount property.voidsetTransactionType(TransactionType value)Sets the value of the transactionType property.
-
-
-
Field Detail
-
transactionType
protected TransactionType transactionType
The Transaction.
-
transactionCount
protected BigInteger transactionCount
The Transaction count.
-
transactionAmount
protected BigDecimal transactionAmount
The Transaction amount.
-
-
Method Detail
-
getTransactionType
public TransactionType getTransactionType()
Gets the value of the transactionType property.- Returns:
- possible object is
TransactionType
-
setTransactionType
public void setTransactionType(TransactionType value)
Sets the value of the transactionType property.- Parameters:
value- allowed object isTransactionType
-
getTransactionCount
public BigInteger getTransactionCount()
Gets the value of the transactionCount property.- Returns:
- possible object is
BigInteger
-
setTransactionCount
public void setTransactionCount(BigInteger value)
Sets the value of the transactionCount property.- Parameters:
value- allowed object isBigInteger
-
getTransactionAmount
public BigDecimal getTransactionAmount()
Gets the value of the transactionAmount property.- Returns:
- possible object is
BigDecimal
-
setTransactionAmount
public void setTransactionAmount(BigDecimal value)
Sets the value of the transactionAmount property.- Parameters:
value- allowed object isBigDecimal
-
-