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

com.adyen.model.nexo.SaleToIssuerData 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.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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy