
com.prowidesoftware.swift.model.mx.dic.LimitIdentificationDetails1 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.XmlSchemaType;
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;
/**
* Cash management feature limiting the maximum risk a party accepts to take with respect to a counterparty or a set of counterparties. A risk management limit is either bilateral, ie, for a counterparty, or multilateral, ie, for a set of counterparties or all other members in a system.The limit may also apply to sponsored members, ie, indirect members. In principle, a risk management limit is calculated on the net position between two members and is expressed as a credit or debit limit, from the point of view of the party setting the limit.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LimitIdentificationDetails1", propOrder = {
"sysId",
"bilLmtCtrPtyId",
"tp",
"acctOwnr",
"acctId"
})
public class LimitIdentificationDetails1 {
@XmlElement(name = "SysId")
protected SystemIdentificationChoice sysId;
@XmlElement(name = "BilLmtCtrPtyId")
protected MemberIdentificationChoice bilLmtCtrPtyId;
@XmlElement(name = "Tp", required = true)
@XmlSchemaType(name = "string")
protected LimitType1Code tp;
@XmlElement(name = "AcctOwnr")
protected String acctOwnr;
@XmlElement(name = "AcctId")
protected AccountIdentification1Choice acctId;
/**
* Gets the value of the sysId property.
*
* @return
* possible object is
* {@link SystemIdentificationChoice }
*
*/
public SystemIdentificationChoice getSysId() {
return sysId;
}
/**
* Sets the value of the sysId property.
*
* @param value
* allowed object is
* {@link SystemIdentificationChoice }
*
*/
public LimitIdentificationDetails1 setSysId(SystemIdentificationChoice value) {
this.sysId = value;
return this;
}
/**
* Gets the value of the bilLmtCtrPtyId property.
*
* @return
* possible object is
* {@link MemberIdentificationChoice }
*
*/
public MemberIdentificationChoice getBilLmtCtrPtyId() {
return bilLmtCtrPtyId;
}
/**
* Sets the value of the bilLmtCtrPtyId property.
*
* @param value
* allowed object is
* {@link MemberIdentificationChoice }
*
*/
public LimitIdentificationDetails1 setBilLmtCtrPtyId(MemberIdentificationChoice value) {
this.bilLmtCtrPtyId = value;
return this;
}
/**
* Gets the value of the tp property.
*
* @return
* possible object is
* {@link LimitType1Code }
*
*/
public LimitType1Code getTp() {
return tp;
}
/**
* Sets the value of the tp property.
*
* @param value
* allowed object is
* {@link LimitType1Code }
*
*/
public LimitIdentificationDetails1 setTp(LimitType1Code value) {
this.tp = value;
return this;
}
/**
* Gets the value of the acctOwnr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAcctOwnr() {
return acctOwnr;
}
/**
* Sets the value of the acctOwnr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public LimitIdentificationDetails1 setAcctOwnr(String value) {
this.acctOwnr = value;
return this;
}
/**
* Gets the value of the acctId property.
*
* @return
* possible object is
* {@link AccountIdentification1Choice }
*
*/
public AccountIdentification1Choice getAcctId() {
return acctId;
}
/**
* Sets the value of the acctId property.
*
* @param value
* allowed object is
* {@link AccountIdentification1Choice }
*
*/
public LimitIdentificationDetails1 setAcctId(AccountIdentification1Choice value) {
this.acctId = 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