com.prowidesoftware.swift.model.mx.dic.PartyIdentification211 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 party.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PartyIdentification211", propOrder = {
"fi",
"cstmr"
})
public class PartyIdentification211 {
@XmlElement(name = "FI")
protected FinancialInstitution4 fi;
@XmlElement(name = "Cstmr")
protected Customer3 cstmr;
/**
* Gets the value of the fi property.
*
* @return
* possible object is
* {@link FinancialInstitution4 }
*
*/
public FinancialInstitution4 getFI() {
return fi;
}
/**
* Sets the value of the fi property.
*
* @param value
* allowed object is
* {@link FinancialInstitution4 }
*
*/
public PartyIdentification211 setFI(FinancialInstitution4 value) {
this.fi = value;
return this;
}
/**
* Gets the value of the cstmr property.
*
* @return
* possible object is
* {@link Customer3 }
*
*/
public Customer3 getCstmr() {
return cstmr;
}
/**
* Sets the value of the cstmr property.
*
* @param value
* allowed object is
* {@link Customer3 }
*
*/
public PartyIdentification211 setCstmr(Customer3 value) {
this.cstmr = 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