
org.iso20022.camt053_001.v09.CreditLine3 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:47 PM IST
//
package org.iso20022.camt053_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 CreditLine3 complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CreditLine3">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Incl" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.09}TrueFalseIndicator"/>
* <element name="Tp" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.09}CreditLineType1Choice" minOccurs="0"/>
* <element name="Amt" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.09}ActiveOrHistoricCurrencyAndAmount" minOccurs="0"/>
* <element name="Dt" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.09}DateAndDateTime2Choice" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreditLine3", propOrder = {
"incl",
"tp",
"amt",
"dt"
})
public class CreditLine3 {
@XmlElement(name = "Incl")
protected boolean incl;
@XmlElement(name = "Tp")
protected CreditLineType1Choice tp;
@XmlElement(name = "Amt")
protected ActiveOrHistoricCurrencyAndAmount amt;
@XmlElement(name = "Dt")
protected DateAndDateTime2Choice dt;
/**
* Gets the value of the incl property.
*
*/
public boolean isIncl() {
return incl;
}
/**
* Sets the value of the incl property.
*
*/
public void setIncl(boolean value) {
this.incl = value;
}
/**
* Gets the value of the tp property.
*
* @return
* possible object is
* {@link CreditLineType1Choice }
*
*/
public CreditLineType1Choice getTp() {
return tp;
}
/**
* Sets the value of the tp property.
*
* @param value
* allowed object is
* {@link CreditLineType1Choice }
*
*/
public void setTp(CreditLineType1Choice value) {
this.tp = value;
}
/**
* Gets the value of the amt property.
*
* @return
* possible object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public ActiveOrHistoricCurrencyAndAmount getAmt() {
return amt;
}
/**
* Sets the value of the amt property.
*
* @param value
* allowed object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public void setAmt(ActiveOrHistoricCurrencyAndAmount value) {
this.amt = value;
}
/**
* Gets the value of the dt property.
*
* @return
* possible object is
* {@link DateAndDateTime2Choice }
*
*/
public DateAndDateTime2Choice getDt() {
return dt;
}
/**
* Sets the value of the dt property.
*
* @param value
* allowed object is
* {@link DateAndDateTime2Choice }
*
*/
public void setDt(DateAndDateTime2Choice value) {
this.dt = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy