com.prowidesoftware.swift.model.mx.dic.Transfer3 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;
/**
* Parameters applied to the settlement of a security transfer.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Transfer3", propOrder = {
"trfRef",
"trfDt",
"ttlUnitsNb",
"ownAcctTrfInd"
})
public class Transfer3 {
@XmlElement(name = "TrfRef", required = true)
protected String trfRef;
@XmlElement(name = "TrfDt")
protected DateFormat1Choice trfDt;
@XmlElement(name = "TtlUnitsNb", required = true)
protected FinancialInstrumentQuantity1 ttlUnitsNb;
@XmlElement(name = "OwnAcctTrfInd")
protected boolean ownAcctTrfInd;
/**
* Gets the value of the trfRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTrfRef() {
return trfRef;
}
/**
* Sets the value of the trfRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Transfer3 setTrfRef(String value) {
this.trfRef = value;
return this;
}
/**
* Gets the value of the trfDt property.
*
* @return
* possible object is
* {@link DateFormat1Choice }
*
*/
public DateFormat1Choice getTrfDt() {
return trfDt;
}
/**
* Sets the value of the trfDt property.
*
* @param value
* allowed object is
* {@link DateFormat1Choice }
*
*/
public Transfer3 setTrfDt(DateFormat1Choice value) {
this.trfDt = value;
return this;
}
/**
* Gets the value of the ttlUnitsNb property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity1 }
*
*/
public FinancialInstrumentQuantity1 getTtlUnitsNb() {
return ttlUnitsNb;
}
/**
* Sets the value of the ttlUnitsNb property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity1 }
*
*/
public Transfer3 setTtlUnitsNb(FinancialInstrumentQuantity1 value) {
this.ttlUnitsNb = value;
return this;
}
/**
* Gets the value of the ownAcctTrfInd property.
*
*/
public boolean isOwnAcctTrfInd() {
return ownAcctTrfInd;
}
/**
* Sets the value of the ownAcctTrfInd property.
*
*/
public Transfer3 setOwnAcctTrfInd(boolean value) {
this.ownAcctTrfInd = 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