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

org.iso20022.camt052_001.v09.CardAggregated2 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:45 PM IST 
//


package org.iso20022.camt052_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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for CardAggregated2 complex type. * *

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

 * <complexType name="CardAggregated2">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="AddtlSvc" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.09}CardPaymentServiceType2Code" minOccurs="0"/>
 *         <element name="TxCtgy" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.09}ExternalCardTransactionCategory1Code" minOccurs="0"/>
 *         <element name="SaleRcncltnId" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.09}Max35Text" minOccurs="0"/>
 *         <element name="SeqNbRg" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.09}CardSequenceNumberRange1" minOccurs="0"/>
 *         <element name="TxDtRg" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.09}DateOrDateTimePeriod1Choice" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CardAggregated2", propOrder = { "addtlSvc", "txCtgy", "saleRcncltnId", "seqNbRg", "txDtRg" }) public class CardAggregated2 { @XmlElement(name = "AddtlSvc") @XmlSchemaType(name = "string") protected CardPaymentServiceType2Code addtlSvc; @XmlElement(name = "TxCtgy") protected String txCtgy; @XmlElement(name = "SaleRcncltnId") protected String saleRcncltnId; @XmlElement(name = "SeqNbRg") protected CardSequenceNumberRange1 seqNbRg; @XmlElement(name = "TxDtRg") protected DateOrDateTimePeriod1Choice txDtRg; /** * Gets the value of the addtlSvc property. * * @return * possible object is * {@link CardPaymentServiceType2Code } * */ public CardPaymentServiceType2Code getAddtlSvc() { return addtlSvc; } /** * Sets the value of the addtlSvc property. * * @param value * allowed object is * {@link CardPaymentServiceType2Code } * */ public void setAddtlSvc(CardPaymentServiceType2Code value) { this.addtlSvc = value; } /** * Gets the value of the txCtgy property. * * @return * possible object is * {@link String } * */ public String getTxCtgy() { return txCtgy; } /** * Sets the value of the txCtgy property. * * @param value * allowed object is * {@link String } * */ public void setTxCtgy(String value) { this.txCtgy = value; } /** * Gets the value of the saleRcncltnId property. * * @return * possible object is * {@link String } * */ public String getSaleRcncltnId() { return saleRcncltnId; } /** * Sets the value of the saleRcncltnId property. * * @param value * allowed object is * {@link String } * */ public void setSaleRcncltnId(String value) { this.saleRcncltnId = value; } /** * Gets the value of the seqNbRg property. * * @return * possible object is * {@link CardSequenceNumberRange1 } * */ public CardSequenceNumberRange1 getSeqNbRg() { return seqNbRg; } /** * Sets the value of the seqNbRg property. * * @param value * allowed object is * {@link CardSequenceNumberRange1 } * */ public void setSeqNbRg(CardSequenceNumberRange1 value) { this.seqNbRg = value; } /** * Gets the value of the txDtRg property. * * @return * possible object is * {@link DateOrDateTimePeriod1Choice } * */ public DateOrDateTimePeriod1Choice getTxDtRg() { return txDtRg; } /** * Sets the value of the txDtRg property. * * @param value * allowed object is * {@link DateOrDateTimePeriod1Choice } * */ public void setTxDtRg(DateOrDateTimePeriod1Choice value) { this.txDtRg = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy