org.iso20022.camt053_001.v09.CashAvailability1 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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for CashAvailability1 complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CashAvailability1">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Dt" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.09}CashAvailabilityDate1Choice"/>
* <element name="Amt" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.09}ActiveOrHistoricCurrencyAndAmount"/>
* <element name="CdtDbtInd" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.09}CreditDebitCode"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CashAvailability1", propOrder = {
"dt",
"amt",
"cdtDbtInd"
})
public class CashAvailability1 {
@XmlElement(name = "Dt", required = true)
protected CashAvailabilityDate1Choice dt;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
@XmlElement(name = "CdtDbtInd", required = true)
@XmlSchemaType(name = "string")
protected CreditDebitCode cdtDbtInd;
/**
* Gets the value of the dt property.
*
* @return
* possible object is
* {@link CashAvailabilityDate1Choice }
*
*/
public CashAvailabilityDate1Choice getDt() {
return dt;
}
/**
* Sets the value of the dt property.
*
* @param value
* allowed object is
* {@link CashAvailabilityDate1Choice }
*
*/
public void setDt(CashAvailabilityDate1Choice value) {
this.dt = 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 cdtDbtInd property.
*
* @return
* possible object is
* {@link CreditDebitCode }
*
*/
public CreditDebitCode getCdtDbtInd() {
return cdtDbtInd;
}
/**
* Sets the value of the cdtDbtInd property.
*
* @param value
* allowed object is
* {@link CreditDebitCode }
*
*/
public void setCdtDbtInd(CreditDebitCode value) {
this.cdtDbtInd = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy