
com.prowidesoftware.swift.model.mx.dic.InvestmentAccount53 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;
/**
* Information about a securities account and its characteristics.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InvestmentAccount53", propOrder = {
"acctId",
"acctNm",
"acctDsgnt",
"ownrId",
"acctSvcr"
})
public class InvestmentAccount53 {
@XmlElement(name = "AcctId", required = true)
protected String acctId;
@XmlElement(name = "AcctNm")
protected String acctNm;
@XmlElement(name = "AcctDsgnt")
protected String acctDsgnt;
@XmlElement(name = "OwnrId")
protected OwnerIdentification2Choice ownrId;
@XmlElement(name = "AcctSvcr")
protected PartyIdentification70Choice acctSvcr;
/**
* Gets the value of the acctId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAcctId() {
return acctId;
}
/**
* Sets the value of the acctId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public InvestmentAccount53 setAcctId(String value) {
this.acctId = value;
return this;
}
/**
* Gets the value of the acctNm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAcctNm() {
return acctNm;
}
/**
* Sets the value of the acctNm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public InvestmentAccount53 setAcctNm(String value) {
this.acctNm = value;
return this;
}
/**
* Gets the value of the acctDsgnt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAcctDsgnt() {
return acctDsgnt;
}
/**
* Sets the value of the acctDsgnt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public InvestmentAccount53 setAcctDsgnt(String value) {
this.acctDsgnt = value;
return this;
}
/**
* Gets the value of the ownrId property.
*
* @return
* possible object is
* {@link OwnerIdentification2Choice }
*
*/
public OwnerIdentification2Choice getOwnrId() {
return ownrId;
}
/**
* Sets the value of the ownrId property.
*
* @param value
* allowed object is
* {@link OwnerIdentification2Choice }
*
*/
public InvestmentAccount53 setOwnrId(OwnerIdentification2Choice value) {
this.ownrId = value;
return this;
}
/**
* Gets the value of the acctSvcr property.
*
* @return
* possible object is
* {@link PartyIdentification70Choice }
*
*/
public PartyIdentification70Choice getAcctSvcr() {
return acctSvcr;
}
/**
* Sets the value of the acctSvcr property.
*
* @param value
* allowed object is
* {@link PartyIdentification70Choice }
*
*/
public InvestmentAccount53 setAcctSvcr(PartyIdentification70Choice value) {
this.acctSvcr = 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