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

org.adorsys.psd2.iso20022.camt053.CardTransaction2 Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2018.03.27 at 07:28:42 AM CEST 
//


package org.adorsys.psd2.iso20022.camt053;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for CardTransaction2 complex type. * *

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

 * <complexType name="CardTransaction2">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Card" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}PaymentCard4" minOccurs="0"/>
 *         <element name="POI" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}PointOfInteraction1" minOccurs="0"/>
 *         <element name="Tx" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}CardTransaction2Choice" minOccurs="0"/>
 *         <element name="PrePdAcct" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}CashAccount24" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CardTransaction2", propOrder = { "card", "poi", "tx", "prePdAcct" }) public class CardTransaction2 { @XmlElement(name = "Card") protected PaymentCard4 card; @XmlElement(name = "POI") protected PointOfInteraction1 poi; @XmlElement(name = "Tx") protected CardTransaction2Choice tx; @XmlElement(name = "PrePdAcct") protected CashAccount24 prePdAcct; /** * Gets the value of the card property. * * @return * possible object is * {@link PaymentCard4 } * */ public PaymentCard4 getCard() { return card; } /** * Sets the value of the card property. * * @param value * allowed object is * {@link PaymentCard4 } * */ public void setCard(PaymentCard4 value) { this.card = value; } /** * Gets the value of the poi property. * * @return * possible object is * {@link PointOfInteraction1 } * */ public PointOfInteraction1 getPOI() { return poi; } /** * Sets the value of the poi property. * * @param value * allowed object is * {@link PointOfInteraction1 } * */ public void setPOI(PointOfInteraction1 value) { this.poi = value; } /** * Gets the value of the tx property. * * @return * possible object is * {@link CardTransaction2Choice } * */ public CardTransaction2Choice getTx() { return tx; } /** * Sets the value of the tx property. * * @param value * allowed object is * {@link CardTransaction2Choice } * */ public void setTx(CardTransaction2Choice value) { this.tx = value; } /** * Gets the value of the prePdAcct property. * * @return * possible object is * {@link CashAccount24 } * */ public CashAccount24 getPrePdAcct() { return prePdAcct; } /** * Sets the value of the prePdAcct property. * * @param value * allowed object is * {@link CashAccount24 } * */ public void setPrePdAcct(CashAccount24 value) { this.prePdAcct = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy