com.adyen.model.nexo.CardAcquisitionRequest 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Definition: Content of the Card Acquisition Request messageType. -- Usage: It conveys Information related to the payment and loyalty cards to read and analyse. This messageType pair is usually followed by a messageType pair (e.g. payment or loyalty) which refers to this Card Acquisition messageType pair. The Card Acquisition
*
* Java class for CardAcquisitionRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CardAcquisitionRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="SaleData" type="{}SaleData"/>
* <element name="CardAcquisitionTransaction" type="{}CardAcquisitionTransaction"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CardAcquisitionRequest", propOrder = {
"saleData",
"cardAcquisitionTransaction"
})
public class CardAcquisitionRequest {
/**
* The Sale data.
*/
@XmlElement(name = "SaleData", required = true)
protected SaleData saleData;
/**
* The Card acquisition transaction.
*/
@XmlElement(name = "CardAcquisitionTransaction", required = true)
protected CardAcquisitionTransaction cardAcquisitionTransaction;
/**
* Gets the value of the saleData property.
*
* @return possible object is {@link SaleData }
*/
public SaleData getSaleData() {
return saleData;
}
/**
* Sets the value of the saleData property.
*
* @param value allowed object is {@link SaleData }
*/
public void setSaleData(SaleData value) {
this.saleData = value;
}
/**
* Gets the value of the cardAcquisitionTransaction property.
*
* @return possible object is {@link CardAcquisitionTransaction }
*/
public CardAcquisitionTransaction getCardAcquisitionTransaction() {
return cardAcquisitionTransaction;
}
/**
* Sets the value of the cardAcquisitionTransaction property.
*
* @param value allowed object is {@link CardAcquisitionTransaction }
*/
public void setCardAcquisitionTransaction(CardAcquisitionTransaction value) {
this.cardAcquisitionTransaction = value;
}
}