
com.adyen.model.nexo.CardAcquisitionTransaction Maven / Gradle / Ivy
Show all versions of adyen-java-api-library Show documentation
package com.adyen.model.nexo;
import io.swagger.v3.oas.annotations.media.Schema;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
/**
* Definition: Data related to the payment and loyalty card acquisition. -- Usage: Elements requested by the Sale System that are global to the payment or loyalty transaction.
*
* Java class for CardAcquisitionTransaction complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CardAcquisitionTransaction">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="AllowedPaymentBrand" type="{}AllowedPaymentBrand" maxOccurs="unbounded" minOccurs="0"/>
* <element name="AllowedLoyaltyBrand" type="{}AllowedLoyaltyBrand" maxOccurs="unbounded" minOccurs="0"/>
* <element name="ForceEntryMode" type="{}ForceEntryMode" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="LoyaltyHandling" type="{}LoyaltyHandlingType" default="Allowed" />
* <attribute name="CustomerLanguage" type="{}ISOLanguage2A" />
* <attribute name="ForceCustomerSelectionFlag" type="{}ForceCustomerSelectionFlag" default="false" />
* <attribute name="TotalAmount" type="{}SimpleAmountType" />
* <attribute name="Payment" type="{}PaymentType" />
* <attribute name="CashBackFlag" type="{}CashBackFlag" />
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CardAcquisitionTransaction", propOrder = {
"allowedPaymentBrand",
"allowedLoyaltyBrand",
"forceEntryMode"
})
public class CardAcquisitionTransaction {
/**
* The Allowed payment brand.
*/
@XmlElement(name = "AllowedPaymentBrand")
@Schema(description = "Card payment brands allowed by the Sale System for the payment transaction.")
protected List allowedPaymentBrand;
/**
* The Allowed loyalty brand.
*/
@XmlElement(name = "AllowedLoyaltyBrand")
@Schema(description = "Loyalty brands or programs allowed by the Sale System for the loyalty transaction.")
protected List allowedLoyaltyBrand;
/**
* The Force entry mode.
*/
@XmlElement(name = "ForceEntryMode")
@Schema(description = "Payment instrument entry mode requested by the Sale System.")
protected List forceEntryMode;
/**
* The Loyalty handling.
*/
@XmlElement(name = "LoyaltyHandling")
@Schema(description = "Type of Loyalty processing requested by the Sale System.")
protected LoyaltyHandlingType loyaltyHandling;
/**
* The Customer language.
*/
@XmlElement(name = "CustomerLanguage")
@Schema(description = "Language of the Customer --Rule: If the language is selected by the Sale System before the request to the POI.")
protected String customerLanguage;
/**
* The Force customer selection flag.
*/
@XmlElement(name = "ForceCustomerSelectionFlag")
@Schema(description = "Indicates if the Customer realises the selection of the card application.")
protected Boolean forceCustomerSelectionFlag;
/**
* The Total amount.
*/
@XmlElement(name = "TotalAmount")
@Schema(description = "Amount of a transaction. --Rule: Mandatory for contactless card, otherwise absent")
protected BigDecimal totalAmount;
/**
* The Payment.
*/
@XmlElement(name = "PaymentType")
@Schema(description = "Type of payment transaction. --Rule: Mandatory for contactless card, otherwise absent")
protected PaymentType paymentType;
/**
* The Cash back flag.
*/
@XmlElement(name = "CashBackFlag")
@Schema(description = "Cash back has been requested with the payment transaction. --Rule: For contactless, True if cash back has been requested, default False. Otherwise absent.")
protected Boolean cashBackFlag;
/**
* Gets the value of the allowedPaymentBrand property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the allowedPaymentBrand property.
*
*
* For example, to add a new item, do as follows:
*
* getAllowedPaymentBrand().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
* @return the allowed payment brand
*/
public List getAllowedPaymentBrand() {
if (allowedPaymentBrand == null) {
allowedPaymentBrand = new ArrayList<>();
}
return this.allowedPaymentBrand;
}
/**
* Gets the value of the allowedLoyaltyBrand property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the allowedLoyaltyBrand property.
*
*
* For example, to add a new item, do as follows:
*
* getAllowedLoyaltyBrand().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
* @return the allowed loyalty brand
*/
public List getAllowedLoyaltyBrand() {
if (allowedLoyaltyBrand == null) {
allowedLoyaltyBrand = new ArrayList<>();
}
return this.allowedLoyaltyBrand;
}
/**
* Gets the value of the forceEntryMode property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the forceEntryMode property.
*
*
* For example, to add a new item, do as follows:
*
* getForceEntryMode().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ForceEntryModeType }
*
* @return the force entry mode
*/
public List getForceEntryMode() {
if (forceEntryMode == null) {
forceEntryMode = new ArrayList<>();
}
return this.forceEntryMode;
}
/**
* Gets the value of the loyaltyHandling property.
*
* @return possible object is {@link LoyaltyHandlingType }
*/
public LoyaltyHandlingType getLoyaltyHandling() {
if (loyaltyHandling == null) {
return LoyaltyHandlingType.ALLOWED;
} else {
return loyaltyHandling;
}
}
/**
* Sets the value of the loyaltyHandling property.
*
* @param value allowed object is {@link LoyaltyHandlingType }
*/
public void setLoyaltyHandling(LoyaltyHandlingType value) {
this.loyaltyHandling = value;
}
/**
* Gets the value of the customerLanguage property.
*
* @return possible object is {@link String }
*/
public String getCustomerLanguage() {
return customerLanguage;
}
/**
* Sets the value of the customerLanguage property.
*
* @param value allowed object is {@link String }
*/
public void setCustomerLanguage(String value) {
this.customerLanguage = value;
}
/**
* Gets the value of the forceCustomerSelectionFlag property.
*
* @return possible object is {@link Boolean }
*/
public boolean isForceCustomerSelectionFlag() {
if (forceCustomerSelectionFlag == null) {
return false;
} else {
return forceCustomerSelectionFlag;
}
}
/**
* Sets the value of the forceCustomerSelectionFlag property.
*
* @param value allowed object is {@link Boolean }
*/
public void setForceCustomerSelectionFlag(Boolean value) {
this.forceCustomerSelectionFlag = value;
}
/**
* Gets the value of the totalAmount property.
*
* @return possible object is {@link BigDecimal }
*/
public BigDecimal getTotalAmount() {
return totalAmount;
}
/**
* Sets the value of the totalAmount property.
*
* @param value allowed object is {@link BigDecimal }
*/
public void setTotalAmount(BigDecimal value) {
this.totalAmount = value;
}
/**
* Gets the value of the paymentType property.
*
* @return possible object is {@link PaymentType }
*/
public PaymentType getPaymentType() {
return paymentType;
}
/**
* Sets the value of the paymentType property.
*
* @param value allowed object is {@link PaymentType }
*/
public void setPaymentType(PaymentType value) {
this.paymentType = value;
}
/**
* Gets the value of the cashBackFlag property.
*
* @return possible object is {@link Boolean }
*/
public Boolean isCashBackFlag() {
return cashBackFlag;
}
/**
* Sets the value of the cashBackFlag property.
*
* @param value allowed object is {@link Boolean }
*/
public void setCashBackFlag(Boolean value) {
this.cashBackFlag = value;
}
}