
com.prowidesoftware.swift.model.mx.dic.AccountBalanceSD8 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;
/**
* Provides additional information regarding account balance. Contains transaction details of the stock loans, repurchase agreements (REPOs) and undelivered trades (FAILs).
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AccountBalanceSD8", propOrder = {
"plcAndNm",
"ucvrdPrtctBal",
"invstmtUpldgdBal",
"invstmtPldgdBal",
"memoSgrtnBal"
})
public class AccountBalanceSD8 {
@XmlElement(name = "PlcAndNm", required = true)
protected String plcAndNm;
@XmlElement(name = "UcvrdPrtctBal")
protected SignedQuantityFormat9 ucvrdPrtctBal;
@XmlElement(name = "InvstmtUpldgdBal")
protected SignedQuantityFormat9 invstmtUpldgdBal;
@XmlElement(name = "InvstmtPldgdBal")
protected SignedQuantityFormat9 invstmtPldgdBal;
@XmlElement(name = "MemoSgrtnBal")
protected SignedQuantityFormat9 memoSgrtnBal;
/**
* Gets the value of the plcAndNm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPlcAndNm() {
return plcAndNm;
}
/**
* Sets the value of the plcAndNm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public AccountBalanceSD8 setPlcAndNm(String value) {
this.plcAndNm = value;
return this;
}
/**
* Gets the value of the ucvrdPrtctBal property.
*
* @return
* possible object is
* {@link SignedQuantityFormat9 }
*
*/
public SignedQuantityFormat9 getUcvrdPrtctBal() {
return ucvrdPrtctBal;
}
/**
* Sets the value of the ucvrdPrtctBal property.
*
* @param value
* allowed object is
* {@link SignedQuantityFormat9 }
*
*/
public AccountBalanceSD8 setUcvrdPrtctBal(SignedQuantityFormat9 value) {
this.ucvrdPrtctBal = value;
return this;
}
/**
* Gets the value of the invstmtUpldgdBal property.
*
* @return
* possible object is
* {@link SignedQuantityFormat9 }
*
*/
public SignedQuantityFormat9 getInvstmtUpldgdBal() {
return invstmtUpldgdBal;
}
/**
* Sets the value of the invstmtUpldgdBal property.
*
* @param value
* allowed object is
* {@link SignedQuantityFormat9 }
*
*/
public AccountBalanceSD8 setInvstmtUpldgdBal(SignedQuantityFormat9 value) {
this.invstmtUpldgdBal = value;
return this;
}
/**
* Gets the value of the invstmtPldgdBal property.
*
* @return
* possible object is
* {@link SignedQuantityFormat9 }
*
*/
public SignedQuantityFormat9 getInvstmtPldgdBal() {
return invstmtPldgdBal;
}
/**
* Sets the value of the invstmtPldgdBal property.
*
* @param value
* allowed object is
* {@link SignedQuantityFormat9 }
*
*/
public AccountBalanceSD8 setInvstmtPldgdBal(SignedQuantityFormat9 value) {
this.invstmtPldgdBal = value;
return this;
}
/**
* Gets the value of the memoSgrtnBal property.
*
* @return
* possible object is
* {@link SignedQuantityFormat9 }
*
*/
public SignedQuantityFormat9 getMemoSgrtnBal() {
return memoSgrtnBal;
}
/**
* Sets the value of the memoSgrtnBal property.
*
* @param value
* allowed object is
* {@link SignedQuantityFormat9 }
*
*/
public AccountBalanceSD8 setMemoSgrtnBal(SignedQuantityFormat9 value) {
this.memoSgrtnBal = 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