com.prowidesoftware.swift.model.mx.dic.Garnishment4 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import java.time.LocalDate;
import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
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;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
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;
/**
* Provides remittance information about a payment for garnishment-related purposes.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Garnishment4", propOrder = {
"tp",
"grnshee",
"grnshmtAdmstr",
"refNb",
"dt",
"rmtdAmt",
"fmlyMdclInsrncInd",
"mplyeeTermntnInd"
})
public class Garnishment4 {
@XmlElement(name = "Tp", required = true)
protected GarnishmentType1 tp;
@XmlElement(name = "Grnshee")
protected PartyIdentification272 grnshee;
@XmlElement(name = "GrnshmtAdmstr")
protected PartyIdentification272 grnshmtAdmstr;
@XmlElement(name = "RefNb")
protected String refNb;
@XmlElement(name = "Dt", type = String.class)
@XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected LocalDate dt;
@XmlElement(name = "RmtdAmt")
protected ActiveOrHistoricCurrencyAndAmount rmtdAmt;
@XmlElement(name = "FmlyMdclInsrncInd")
protected Boolean fmlyMdclInsrncInd;
@XmlElement(name = "MplyeeTermntnInd")
protected Boolean mplyeeTermntnInd;
/**
* Gets the value of the tp property.
*
* @return
* possible object is
* {@link GarnishmentType1 }
*
*/
public GarnishmentType1 getTp() {
return tp;
}
/**
* Sets the value of the tp property.
*
* @param value
* allowed object is
* {@link GarnishmentType1 }
*
*/
public Garnishment4 setTp(GarnishmentType1 value) {
this.tp = value;
return this;
}
/**
* Gets the value of the grnshee property.
*
* @return
* possible object is
* {@link PartyIdentification272 }
*
*/
public PartyIdentification272 getGrnshee() {
return grnshee;
}
/**
* Sets the value of the grnshee property.
*
* @param value
* allowed object is
* {@link PartyIdentification272 }
*
*/
public Garnishment4 setGrnshee(PartyIdentification272 value) {
this.grnshee = value;
return this;
}
/**
* Gets the value of the grnshmtAdmstr property.
*
* @return
* possible object is
* {@link PartyIdentification272 }
*
*/
public PartyIdentification272 getGrnshmtAdmstr() {
return grnshmtAdmstr;
}
/**
* Sets the value of the grnshmtAdmstr property.
*
* @param value
* allowed object is
* {@link PartyIdentification272 }
*
*/
public Garnishment4 setGrnshmtAdmstr(PartyIdentification272 value) {
this.grnshmtAdmstr = value;
return this;
}
/**
* Gets the value of the refNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRefNb() {
return refNb;
}
/**
* Sets the value of the refNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Garnishment4 setRefNb(String value) {
this.refNb = value;
return this;
}
/**
* Gets the value of the dt property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getDt() {
return dt;
}
/**
* Sets the value of the dt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Garnishment4 setDt(LocalDate value) {
this.dt = value;
return this;
}
/**
* Gets the value of the rmtdAmt property.
*
* @return
* possible object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public ActiveOrHistoricCurrencyAndAmount getRmtdAmt() {
return rmtdAmt;
}
/**
* Sets the value of the rmtdAmt property.
*
* @param value
* allowed object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public Garnishment4 setRmtdAmt(ActiveOrHistoricCurrencyAndAmount value) {
this.rmtdAmt = value;
return this;
}
/**
* Gets the value of the fmlyMdclInsrncInd property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isFmlyMdclInsrncInd() {
return fmlyMdclInsrncInd;
}
/**
* Sets the value of the fmlyMdclInsrncInd property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public Garnishment4 setFmlyMdclInsrncInd(Boolean value) {
this.fmlyMdclInsrncInd = value;
return this;
}
/**
* Gets the value of the mplyeeTermntnInd property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isMplyeeTermntnInd() {
return mplyeeTermntnInd;
}
/**
* Sets the value of the mplyeeTermntnInd property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public Garnishment4 setMplyeeTermntnInd(Boolean value) {
this.mplyeeTermntnInd = 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