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

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

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

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.XmlType;


/**
 * Definition: Data related to the loyalty Acquirer during a loyalty transaction. -- Usage: Information allowing the Sale System to characterise the transaction on the loyalty Acquirer host.
 *
 * 

Java class for LoyaltyAcquirerData complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="LoyaltyAcquirerData">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ApprovalCode" type="{}ApprovalCode" minOccurs="0"/>
 *         <element name="LoyaltyTransactionID" type="{}TransactionIdentification" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="LoyaltyAcquirerID" type="{}LoyaltyAcquirerID" />
 *       <attribute name="HostReconciliationID" type="{}HostReconciliationID" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LoyaltyAcquirerData", propOrder = { "approvalCode", "loyaltyTransactionID" }) public class LoyaltyAcquirerData { /** * The Approval code. */ @XmlElement(name = "ApprovalCode") protected String approvalCode; /** * The Loyalty transaction id. */ @XmlElement(name = "LoyaltyTransactionID") protected TransactionIdentification loyaltyTransactionID; /** * The Loyalty acquirer id. */ @XmlAttribute(name = "LoyaltyAcquirerID") protected String loyaltyAcquirerID; /** * The Host reconciliation id. */ @XmlAttribute(name = "HostReconciliationID") protected String hostReconciliationID; /** * Gets the value of the approvalCode property. * * @return possible object is {@link String } */ public String getApprovalCode() { return approvalCode; } /** * Sets the value of the approvalCode property. * * @param value allowed object is {@link String } */ public void setApprovalCode(String value) { this.approvalCode = value; } /** * Gets the value of the loyaltyTransactionID property. * * @return possible object is {@link TransactionIdentification } */ public TransactionIdentification getLoyaltyTransactionID() { return loyaltyTransactionID; } /** * Sets the value of the loyaltyTransactionID property. * * @param value allowed object is {@link TransactionIdentification } */ public void setLoyaltyTransactionID(TransactionIdentification value) { this.loyaltyTransactionID = value; } /** * Gets the value of the loyaltyAcquirerID property. * * @return possible object is {@link String } */ public String getLoyaltyAcquirerID() { return loyaltyAcquirerID; } /** * Sets the value of the loyaltyAcquirerID property. * * @param value allowed object is {@link String } */ public void setLoyaltyAcquirerID(String value) { this.loyaltyAcquirerID = value; } /** * Gets the value of the hostReconciliationID property. * * @return possible object is {@link String } */ public String getHostReconciliationID() { return hostReconciliationID; } /** * Sets the value of the hostReconciliationID property. * * @param value allowed object is {@link String } */ public void setHostReconciliationID(String value) { this.hostReconciliationID = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy