com.prowidesoftware.swift.model.mx.dic.Transfer6 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
package com.prowidesoftware.swift.model.mx.dic;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.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 = "Transfer6", propOrder = {
"mstrRef",
"trfRef",
"clntRef",
"cxlRef",
"trfDt",
"ttlUnitsNb",
"ownAcctTrfInd",
"nonStdSttlmInf"
})
public class Transfer6 {
@XmlElement(name = "MstrRef")
protected String mstrRef;
@XmlElement(name = "TrfRef", required = true)
protected String trfRef;
@XmlElement(name = "ClntRef")
protected String clntRef;
@XmlElement(name = "CxlRef")
protected String cxlRef;
@XmlElement(name = "TrfDt")
protected DateFormat1Choice trfDt;
@XmlElement(name = "TtlUnitsNb", required = true)
protected FinancialInstrumentQuantity1 ttlUnitsNb;
@XmlElement(name = "OwnAcctTrfInd")
protected Boolean ownAcctTrfInd;
@XmlElement(name = "NonStdSttlmInf")
protected String nonStdSttlmInf;
/**
* Gets the value of the mstrRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMstrRef() {
return mstrRef;
}
/**
* Sets the value of the mstrRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Transfer6 setMstrRef(String value) {
this.mstrRef = value;
return this;
}
/**
* 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 Transfer6 setTrfRef(String value) {
this.trfRef = value;
return this;
}
/**
* Gets the value of the clntRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClntRef() {
return clntRef;
}
/**
* Sets the value of the clntRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Transfer6 setClntRef(String value) {
this.clntRef = value;
return this;
}
/**
* Gets the value of the cxlRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCxlRef() {
return cxlRef;
}
/**
* Sets the value of the cxlRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Transfer6 setCxlRef(String value) {
this.cxlRef = 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 Transfer6 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 Transfer6 setTtlUnitsNb(FinancialInstrumentQuantity1 value) {
this.ttlUnitsNb = value;
return this;
}
/**
* Gets the value of the ownAcctTrfInd property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isOwnAcctTrfInd() {
return ownAcctTrfInd;
}
/**
* Sets the value of the ownAcctTrfInd property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public Transfer6 setOwnAcctTrfInd(Boolean value) {
this.ownAcctTrfInd = value;
return this;
}
/**
* Gets the value of the nonStdSttlmInf property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNonStdSttlmInf() {
return nonStdSttlmInf;
}
/**
* Sets the value of the nonStdSttlmInf property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Transfer6 setNonStdSttlmInf(String value) {
this.nonStdSttlmInf = 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