com.adyen.model.nexo.PaymentAcquirerData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adyen-java-api-library Show documentation
Show all versions of adyen-java-api-library Show documentation
Adyen API Client Library for Java
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 response from the payment Acquirer.
*
* Java class for PaymentAcquirerData complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PaymentAcquirerData">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="AcquirerTransactionID" type="{}TransactionIdentification" minOccurs="0"/>
* <element name="ApprovalCode" type="{}ApprovalCode" minOccurs="0"/>
* </sequence>
* <attribute name="AcquirerID" type="{}AcquirerID" />
* <attribute name="MerchantID" use="required" type="{}MerchantID" />
* <attribute name="AcquirerPOIID" use="required" type="{}AcquirerPOIID" />
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PaymentAcquirerData", propOrder = {
"acquirerTransactionID",
"approvalCode"
})
public class PaymentAcquirerData {
/**
* The Acquirer transaction id.
*/
@XmlElement(name = "AcquirerTransactionID")
protected TransactionIdentification acquirerTransactionID;
/**
* The Approval code.
*/
@XmlElement(name = "ApprovalCode")
protected String approvalCode;
/**
* The Acquirer id.
*/
@XmlAttribute(name = "AcquirerID")
protected String acquirerID;
/**
* The Merchant id.
*/
@XmlAttribute(name = "MerchantID", required = true)
protected String merchantID;
/**
* The Acquirer poiid.
*/
@XmlAttribute(name = "AcquirerPOIID", required = true)
protected String acquirerPOIID;
/**
* Gets the value of the acquirerTransactionID property.
*
* @return possible object is {@link TransactionIdentification }
*/
public TransactionIdentification getAcquirerTransactionID() {
return acquirerTransactionID;
}
/**
* Sets the value of the acquirerTransactionID property.
*
* @param value allowed object is {@link TransactionIdentification }
*/
public void setAcquirerTransactionID(TransactionIdentification value) {
this.acquirerTransactionID = value;
}
/**
* 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 acquirerID property.
*
* @return possible object is {@link String }
*/
public String getAcquirerID() {
return acquirerID;
}
/**
* Sets the value of the acquirerID property.
*
* @param value allowed object is {@link String }
*/
public void setAcquirerID(String value) {
this.acquirerID = value;
}
/**
* Gets the value of the merchantID property.
*
* @return possible object is {@link String }
*/
public String getMerchantID() {
return merchantID;
}
/**
* Sets the value of the merchantID property.
*
* @param value allowed object is {@link String }
*/
public void setMerchantID(String value) {
this.merchantID = value;
}
/**
* Gets the value of the acquirerPOIID property.
*
* @return possible object is {@link String }
*/
public String getAcquirerPOIID() {
return acquirerPOIID;
}
/**
* Sets the value of the acquirerPOIID property.
*
* @param value allowed object is {@link String }
*/
public void setAcquirerPOIID(String value) {
this.acquirerPOIID = value;
}
}