com.prowidesoftware.swift.model.mx.dic.Obligation7 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
The newest version!
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.XmlSchemaType;
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;
/**
* General information about the collateral agreement.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Obligation7", propOrder = {
"ptyA",
"svcgPtyA",
"ptyB",
"svcgPtyB",
"collAcctId",
"xpsrTp",
"collTxTp",
"collSd",
"xpsrAmt",
"valtnDt",
"clsgDt",
"reqdExctnDt"
})
public class Obligation7 {
@XmlElement(name = "PtyA", required = true)
protected PartyIdentification178Choice ptyA;
@XmlElement(name = "SvcgPtyA")
protected PartyIdentification178Choice svcgPtyA;
@XmlElement(name = "PtyB", required = true)
protected PartyIdentification178Choice ptyB;
@XmlElement(name = "SvcgPtyB")
protected PartyIdentification178Choice svcgPtyB;
@XmlElement(name = "CollAcctId")
protected CollateralAccount3 collAcctId;
@XmlElement(name = "XpsrTp")
@XmlSchemaType(name = "string")
protected ExposureType5Code xpsrTp;
@XmlElement(name = "CollTxTp")
protected CollateralTransactionType1Choice collTxTp;
@XmlElement(name = "CollSd")
@XmlSchemaType(name = "string")
protected CollateralRole1Code collSd;
@XmlElement(name = "XpsrAmt")
protected AmountAndDirection20 xpsrAmt;
@XmlElement(name = "ValtnDt")
protected DateAndDateTime2Choice valtnDt;
@XmlElement(name = "ClsgDt")
protected ClosingDate4Choice clsgDt;
@XmlElement(name = "ReqdExctnDt")
protected DateAndDateTime2Choice reqdExctnDt;
/**
* Gets the value of the ptyA property.
*
* @return
* possible object is
* {@link PartyIdentification178Choice }
*
*/
public PartyIdentification178Choice getPtyA() {
return ptyA;
}
/**
* Sets the value of the ptyA property.
*
* @param value
* allowed object is
* {@link PartyIdentification178Choice }
*
*/
public Obligation7 setPtyA(PartyIdentification178Choice value) {
this.ptyA = value;
return this;
}
/**
* Gets the value of the svcgPtyA property.
*
* @return
* possible object is
* {@link PartyIdentification178Choice }
*
*/
public PartyIdentification178Choice getSvcgPtyA() {
return svcgPtyA;
}
/**
* Sets the value of the svcgPtyA property.
*
* @param value
* allowed object is
* {@link PartyIdentification178Choice }
*
*/
public Obligation7 setSvcgPtyA(PartyIdentification178Choice value) {
this.svcgPtyA = value;
return this;
}
/**
* Gets the value of the ptyB property.
*
* @return
* possible object is
* {@link PartyIdentification178Choice }
*
*/
public PartyIdentification178Choice getPtyB() {
return ptyB;
}
/**
* Sets the value of the ptyB property.
*
* @param value
* allowed object is
* {@link PartyIdentification178Choice }
*
*/
public Obligation7 setPtyB(PartyIdentification178Choice value) {
this.ptyB = value;
return this;
}
/**
* Gets the value of the svcgPtyB property.
*
* @return
* possible object is
* {@link PartyIdentification178Choice }
*
*/
public PartyIdentification178Choice getSvcgPtyB() {
return svcgPtyB;
}
/**
* Sets the value of the svcgPtyB property.
*
* @param value
* allowed object is
* {@link PartyIdentification178Choice }
*
*/
public Obligation7 setSvcgPtyB(PartyIdentification178Choice value) {
this.svcgPtyB = value;
return this;
}
/**
* Gets the value of the collAcctId property.
*
* @return
* possible object is
* {@link CollateralAccount3 }
*
*/
public CollateralAccount3 getCollAcctId() {
return collAcctId;
}
/**
* Sets the value of the collAcctId property.
*
* @param value
* allowed object is
* {@link CollateralAccount3 }
*
*/
public Obligation7 setCollAcctId(CollateralAccount3 value) {
this.collAcctId = value;
return this;
}
/**
* Gets the value of the xpsrTp property.
*
* @return
* possible object is
* {@link ExposureType5Code }
*
*/
public ExposureType5Code getXpsrTp() {
return xpsrTp;
}
/**
* Sets the value of the xpsrTp property.
*
* @param value
* allowed object is
* {@link ExposureType5Code }
*
*/
public Obligation7 setXpsrTp(ExposureType5Code value) {
this.xpsrTp = value;
return this;
}
/**
* Gets the value of the collTxTp property.
*
* @return
* possible object is
* {@link CollateralTransactionType1Choice }
*
*/
public CollateralTransactionType1Choice getCollTxTp() {
return collTxTp;
}
/**
* Sets the value of the collTxTp property.
*
* @param value
* allowed object is
* {@link CollateralTransactionType1Choice }
*
*/
public Obligation7 setCollTxTp(CollateralTransactionType1Choice value) {
this.collTxTp = value;
return this;
}
/**
* Gets the value of the collSd property.
*
* @return
* possible object is
* {@link CollateralRole1Code }
*
*/
public CollateralRole1Code getCollSd() {
return collSd;
}
/**
* Sets the value of the collSd property.
*
* @param value
* allowed object is
* {@link CollateralRole1Code }
*
*/
public Obligation7 setCollSd(CollateralRole1Code value) {
this.collSd = value;
return this;
}
/**
* Gets the value of the xpsrAmt property.
*
* @return
* possible object is
* {@link AmountAndDirection20 }
*
*/
public AmountAndDirection20 getXpsrAmt() {
return xpsrAmt;
}
/**
* Sets the value of the xpsrAmt property.
*
* @param value
* allowed object is
* {@link AmountAndDirection20 }
*
*/
public Obligation7 setXpsrAmt(AmountAndDirection20 value) {
this.xpsrAmt = value;
return this;
}
/**
* Gets the value of the valtnDt property.
*
* @return
* possible object is
* {@link DateAndDateTime2Choice }
*
*/
public DateAndDateTime2Choice getValtnDt() {
return valtnDt;
}
/**
* Sets the value of the valtnDt property.
*
* @param value
* allowed object is
* {@link DateAndDateTime2Choice }
*
*/
public Obligation7 setValtnDt(DateAndDateTime2Choice value) {
this.valtnDt = value;
return this;
}
/**
* Gets the value of the clsgDt property.
*
* @return
* possible object is
* {@link ClosingDate4Choice }
*
*/
public ClosingDate4Choice getClsgDt() {
return clsgDt;
}
/**
* Sets the value of the clsgDt property.
*
* @param value
* allowed object is
* {@link ClosingDate4Choice }
*
*/
public Obligation7 setClsgDt(ClosingDate4Choice value) {
this.clsgDt = value;
return this;
}
/**
* Gets the value of the reqdExctnDt property.
*
* @return
* possible object is
* {@link DateAndDateTime2Choice }
*
*/
public DateAndDateTime2Choice getReqdExctnDt() {
return reqdExctnDt;
}
/**
* Sets the value of the reqdExctnDt property.
*
* @param value
* allowed object is
* {@link DateAndDateTime2Choice }
*
*/
public Obligation7 setReqdExctnDt(DateAndDateTime2Choice value) {
this.reqdExctnDt = 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