com.prowidesoftware.swift.model.mx.dic.SettlementParties1 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;
/**
* Identification of a settlement party by a choice between a BIC or a name and address.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SettlementParties1", propOrder = {
"dlvryAgt",
"intrmy",
"rcvgAgt",
"bnfcryInstn"
})
public class SettlementParties1 {
@XmlElement(name = "DlvryAgt")
protected PartyIdentification8Choice dlvryAgt;
@XmlElement(name = "Intrmy")
protected PartyIdentification8Choice intrmy;
@XmlElement(name = "RcvgAgt", required = true)
protected PartyIdentification8Choice rcvgAgt;
@XmlElement(name = "BnfcryInstn")
protected PartyIdentification8Choice bnfcryInstn;
/**
* Gets the value of the dlvryAgt property.
*
* @return
* possible object is
* {@link PartyIdentification8Choice }
*
*/
public PartyIdentification8Choice getDlvryAgt() {
return dlvryAgt;
}
/**
* Sets the value of the dlvryAgt property.
*
* @param value
* allowed object is
* {@link PartyIdentification8Choice }
*
*/
public SettlementParties1 setDlvryAgt(PartyIdentification8Choice value) {
this.dlvryAgt = value;
return this;
}
/**
* Gets the value of the intrmy property.
*
* @return
* possible object is
* {@link PartyIdentification8Choice }
*
*/
public PartyIdentification8Choice getIntrmy() {
return intrmy;
}
/**
* Sets the value of the intrmy property.
*
* @param value
* allowed object is
* {@link PartyIdentification8Choice }
*
*/
public SettlementParties1 setIntrmy(PartyIdentification8Choice value) {
this.intrmy = value;
return this;
}
/**
* Gets the value of the rcvgAgt property.
*
* @return
* possible object is
* {@link PartyIdentification8Choice }
*
*/
public PartyIdentification8Choice getRcvgAgt() {
return rcvgAgt;
}
/**
* Sets the value of the rcvgAgt property.
*
* @param value
* allowed object is
* {@link PartyIdentification8Choice }
*
*/
public SettlementParties1 setRcvgAgt(PartyIdentification8Choice value) {
this.rcvgAgt = value;
return this;
}
/**
* Gets the value of the bnfcryInstn property.
*
* @return
* possible object is
* {@link PartyIdentification8Choice }
*
*/
public PartyIdentification8Choice getBnfcryInstn() {
return bnfcryInstn;
}
/**
* Sets the value of the bnfcryInstn property.
*
* @param value
* allowed object is
* {@link PartyIdentification8Choice }
*
*/
public SettlementParties1 setBnfcryInstn(PartyIdentification8Choice value) {
this.bnfcryInstn = 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