
org.iso20022.camt054_001.v09.CardTransaction3Choice Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.1
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.09.21 at 06:04:50 PM IST
//
package org.iso20022.camt054_001.v09;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for CardTransaction3Choice complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CardTransaction3Choice">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="Aggtd" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.09}CardAggregated2"/>
* <element name="Indv" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.09}CardIndividualTransaction2"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CardTransaction3Choice", propOrder = {
"aggtd",
"indv"
})
public class CardTransaction3Choice {
@XmlElement(name = "Aggtd")
protected CardAggregated2 aggtd;
@XmlElement(name = "Indv")
protected CardIndividualTransaction2 indv;
/**
* Gets the value of the aggtd property.
*
* @return
* possible object is
* {@link CardAggregated2 }
*
*/
public CardAggregated2 getAggtd() {
return aggtd;
}
/**
* Sets the value of the aggtd property.
*
* @param value
* allowed object is
* {@link CardAggregated2 }
*
*/
public void setAggtd(CardAggregated2 value) {
this.aggtd = value;
}
/**
* Gets the value of the indv property.
*
* @return
* possible object is
* {@link CardIndividualTransaction2 }
*
*/
public CardIndividualTransaction2 getIndv() {
return indv;
}
/**
* Sets the value of the indv property.
*
* @param value
* allowed object is
* {@link CardIndividualTransaction2 }
*
*/
public void setIndv(CardIndividualTransaction2 value) {
this.indv = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy