com.adyen.model.nexo.SaleToIssuerData 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: Sale information intended for the Issuer. -- Usage: The POI System receives this information and sends it to the Acquirer for the Issuer without any change.
*
* Java class for SaleToIssuerData complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SaleToIssuerData">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="StatementReference" type="{}StatementReference" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SaleToIssuerData", propOrder = {
"statementReference"
})
public class SaleToIssuerData {
/**
* The Statement reference.
*/
@XmlElement(name = "StatementReference")
protected String statementReference;
/**
* Gets the value of the statementReference property.
*
* @return possible object is {@link String }
*/
public String getStatementReference() {
return statementReference;
}
/**
* Sets the value of the statementReference property.
*
* @param value allowed object is {@link String }
*/
public void setStatementReference(String value) {
this.statementReference = value;
}
}