com.prowidesoftware.swift.model.mx.dic.CreditLine3 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
/**
* Set of elements used to provide details of the credit line.
*
*
*
*/
@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 CreditLine3 setIncl(boolean value) {
this.incl = value;
return this;
}
/**
* 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 CreditLine3 setTp(CreditLineType1Choice value) {
this.tp = value;
return this;
}
/**
* 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 CreditLine3 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
this.amt = value;
return this;
}
/**
* 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 CreditLine3 setDt(DateAndDateTime2Choice value) {
this.dt = value;
return this;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE);
}
@Override
public boolean equals(Object that) {
return EqualsBuilder.reflectionEquals(this, that);
}
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy