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

org.adorsys.psd2.iso20022.camt052.CardAggregated1 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.camt052;

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


/**
 * 

Java class for CardAggregated1 complex type. * *

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

 * <complexType name="CardAggregated1">
 *   <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.06}CardPaymentServiceType2Code" minOccurs="0"/>
 *         <element name="TxCtgy" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}ExternalCardTransactionCategory1Code" minOccurs="0"/>
 *         <element name="SaleRcncltnId" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}Max35Text" minOccurs="0"/>
 *         <element name="SeqNbRg" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}CardSequenceNumberRange1" minOccurs="0"/>
 *         <element name="TxDtRg" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}DateOrDateTimePeriodChoice" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CardAggregated1", propOrder = { "addtlSvc", "txCtgy", "saleRcncltnId", "seqNbRg", "txDtRg" }) public class CardAggregated1 { @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 DateOrDateTimePeriodChoice 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 DateOrDateTimePeriodChoice } * */ public DateOrDateTimePeriodChoice getTxDtRg() { return txDtRg; } /** * Sets the value of the txDtRg property. * * @param value * allowed object is * {@link DateOrDateTimePeriodChoice } * */ public void setTxDtRg(DateOrDateTimePeriodChoice value) { this.txDtRg = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy