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

com.adyen.model.nexo.TransactionIdentification 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.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * Definition: Identification of a transaction for the Sale System or the POI System.
 *
 * 

Java class for TransactionIdentification complex type. * *

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

 * <complexType name="TransactionIdentification">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="TransactionID" use="required" type="{}TransactionID" />
 *       <attribute name="TimeStamp" use="required" type="{}TimeStamp" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TransactionIdentification") public class TransactionIdentification { /** * The Transaction id. */ @XmlAttribute(name = "TransactionID", required = true) protected String transactionID; /** * The Time stamp. */ @XmlAttribute(name = "TimeStamp", required = true) protected XMLGregorianCalendar timeStamp; /** * Gets the value of the transactionID property. * * @return possible object is {@link String } */ public String getTransactionID() { return transactionID; } /** * Sets the value of the transactionID property. * * @param value allowed object is {@link String } */ public void setTransactionID(String value) { this.transactionID = value; } /** * Gets the value of the timeStamp property. * * @return possible object is {@link XMLGregorianCalendar } */ public XMLGregorianCalendar getTimeStamp() { return timeStamp; } /** * Sets the value of the timeStamp property. * * @param value allowed object is {@link XMLGregorianCalendar } */ public void setTimeStamp(XMLGregorianCalendar value) { this.timeStamp = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy