
com.prowidesoftware.swift.model.mx.dic.Counterparty30 Maven / Gradle / Ivy
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;
/**
* Data specific to counterparties of the reported transaction.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Counterparty30", propOrder = {
"rptgCtrPty",
"othrCtrPty",
"nttyRspnsblForRpt",
"rptSubmitgNtty"
})
public class Counterparty30 {
@XmlElement(name = "RptgCtrPty", required = true)
protected OrganisationIdentification9Choice rptgCtrPty;
@XmlElement(name = "OthrCtrPty", required = true)
protected OrganisationIdentification9Choice othrCtrPty;
@XmlElement(name = "NttyRspnsblForRpt")
protected OrganisationIdentification9Choice nttyRspnsblForRpt;
@XmlElement(name = "RptSubmitgNtty")
protected OrganisationIdentification9Choice rptSubmitgNtty;
/**
* Gets the value of the rptgCtrPty property.
*
* @return
* possible object is
* {@link OrganisationIdentification9Choice }
*
*/
public OrganisationIdentification9Choice getRptgCtrPty() {
return rptgCtrPty;
}
/**
* Sets the value of the rptgCtrPty property.
*
* @param value
* allowed object is
* {@link OrganisationIdentification9Choice }
*
*/
public Counterparty30 setRptgCtrPty(OrganisationIdentification9Choice value) {
this.rptgCtrPty = value;
return this;
}
/**
* Gets the value of the othrCtrPty property.
*
* @return
* possible object is
* {@link OrganisationIdentification9Choice }
*
*/
public OrganisationIdentification9Choice getOthrCtrPty() {
return othrCtrPty;
}
/**
* Sets the value of the othrCtrPty property.
*
* @param value
* allowed object is
* {@link OrganisationIdentification9Choice }
*
*/
public Counterparty30 setOthrCtrPty(OrganisationIdentification9Choice value) {
this.othrCtrPty = value;
return this;
}
/**
* Gets the value of the nttyRspnsblForRpt property.
*
* @return
* possible object is
* {@link OrganisationIdentification9Choice }
*
*/
public OrganisationIdentification9Choice getNttyRspnsblForRpt() {
return nttyRspnsblForRpt;
}
/**
* Sets the value of the nttyRspnsblForRpt property.
*
* @param value
* allowed object is
* {@link OrganisationIdentification9Choice }
*
*/
public Counterparty30 setNttyRspnsblForRpt(OrganisationIdentification9Choice value) {
this.nttyRspnsblForRpt = value;
return this;
}
/**
* Gets the value of the rptSubmitgNtty property.
*
* @return
* possible object is
* {@link OrganisationIdentification9Choice }
*
*/
public OrganisationIdentification9Choice getRptSubmitgNtty() {
return rptSubmitgNtty;
}
/**
* Sets the value of the rptSubmitgNtty property.
*
* @param value
* allowed object is
* {@link OrganisationIdentification9Choice }
*
*/
public Counterparty30 setRptSubmitgNtty(OrganisationIdentification9Choice value) {
this.rptSubmitgNtty = 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