All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adyen.model.nexo.CardAcquisitionTransaction Maven / Gradle / Ivy

There is a newer version: 28.4.0
Show newest version
package com.adyen.model.nexo;

import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementRef;
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") protected List allowedPaymentBrand; /** * The Allowed loyalty brand. */ @XmlElement(name = "AllowedLoyaltyBrand") protected List allowedLoyaltyBrand; /** * The Force entry mode. */ @XmlElementRef(name = "ForceEntryMode", type = JAXBElement.class, required = false) protected List>> forceEntryMode; /** * The Loyalty handling. */ @XmlAttribute(name = "LoyaltyHandling") protected LoyaltyHandlingType loyaltyHandling; /** * The Customer language. */ @XmlAttribute(name = "CustomerLanguage") protected String customerLanguage; /** * The Force customer selection flag. */ @XmlAttribute(name = "ForceCustomerSelectionFlag") protected Boolean forceCustomerSelectionFlag; /** * The Total amount. */ @XmlAttribute(name = "TotalAmount") protected BigDecimal totalAmount; /** * The Payment. */ @XmlAttribute(name = "PaymentType") protected PaymentType paymentType; /** * The Cash back flag. */ @XmlAttribute(name = "CashBackFlag") 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 JAXBElement }{@code <}{@link List }{@code <}{@link ForceEntryModeType }{@code >}{@code >} * * @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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy