com.prowidesoftware.swift.model.mx.dic.Commission22 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;
/**
* Amount of money due to a party as compensation for a service.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Commission22", propOrder = {
"tp",
"bsis",
"amt",
"rcptId",
"comrclAgrmtRef",
"wvgDtls"
})
public class Commission22 {
@XmlElement(name = "Tp", required = true)
protected CommissionType3Choice tp;
@XmlElement(name = "Bsis")
protected CommissionBasis1Choice bsis;
@XmlElement(name = "Amt", required = true)
protected ActiveCurrencyAnd13DecimalAmount amt;
@XmlElement(name = "RcptId")
protected PartyIdentification2Choice rcptId;
@XmlElement(name = "ComrclAgrmtRef")
protected String comrclAgrmtRef;
@XmlElement(name = "WvgDtls")
protected CommissionWaiver4 wvgDtls;
/**
* Gets the value of the tp property.
*
* @return
* possible object is
* {@link CommissionType3Choice }
*
*/
public CommissionType3Choice getTp() {
return tp;
}
/**
* Sets the value of the tp property.
*
* @param value
* allowed object is
* {@link CommissionType3Choice }
*
*/
public Commission22 setTp(CommissionType3Choice value) {
this.tp = value;
return this;
}
/**
* Gets the value of the bsis property.
*
* @return
* possible object is
* {@link CommissionBasis1Choice }
*
*/
public CommissionBasis1Choice getBsis() {
return bsis;
}
/**
* Sets the value of the bsis property.
*
* @param value
* allowed object is
* {@link CommissionBasis1Choice }
*
*/
public Commission22 setBsis(CommissionBasis1Choice value) {
this.bsis = value;
return this;
}
/**
* Gets the value of the amt property.
*
* @return
* possible object is
* {@link ActiveCurrencyAnd13DecimalAmount }
*
*/
public ActiveCurrencyAnd13DecimalAmount getAmt() {
return amt;
}
/**
* Sets the value of the amt property.
*
* @param value
* allowed object is
* {@link ActiveCurrencyAnd13DecimalAmount }
*
*/
public Commission22 setAmt(ActiveCurrencyAnd13DecimalAmount value) {
this.amt = value;
return this;
}
/**
* Gets the value of the rcptId property.
*
* @return
* possible object is
* {@link PartyIdentification2Choice }
*
*/
public PartyIdentification2Choice getRcptId() {
return rcptId;
}
/**
* Sets the value of the rcptId property.
*
* @param value
* allowed object is
* {@link PartyIdentification2Choice }
*
*/
public Commission22 setRcptId(PartyIdentification2Choice value) {
this.rcptId = value;
return this;
}
/**
* Gets the value of the comrclAgrmtRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getComrclAgrmtRef() {
return comrclAgrmtRef;
}
/**
* Sets the value of the comrclAgrmtRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Commission22 setComrclAgrmtRef(String value) {
this.comrclAgrmtRef = value;
return this;
}
/**
* Gets the value of the wvgDtls property.
*
* @return
* possible object is
* {@link CommissionWaiver4 }
*
*/
public CommissionWaiver4 getWvgDtls() {
return wvgDtls;
}
/**
* Sets the value of the wvgDtls property.
*
* @param value
* allowed object is
* {@link CommissionWaiver4 }
*
*/
public Commission22 setWvgDtls(CommissionWaiver4 value) {
this.wvgDtls = 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