
com.prowidesoftware.swift.model.mx.dic.StandingSettlementInstruction11 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;
/**
* Details of the standing settlement instruction to be applied.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StandingSettlementInstruction11", propOrder = {
"sttlmStgInstrDB",
"ctrPty",
"vndr",
"othrDlvrgSttlmPties",
"othrRcvgSttlmPties"
})
public class StandingSettlementInstruction11 {
@XmlElement(name = "SttlmStgInstrDB", required = true)
protected SettlementStandingInstructionDatabase4Choice sttlmStgInstrDB;
@XmlElement(name = "CtrPty", required = true)
protected Counterparty9Choice ctrPty;
@XmlElement(name = "Vndr")
protected PartyIdentification100 vndr;
@XmlElement(name = "OthrDlvrgSttlmPties")
protected SettlementParties36 othrDlvrgSttlmPties;
@XmlElement(name = "OthrRcvgSttlmPties")
protected SettlementParties36 othrRcvgSttlmPties;
/**
* Gets the value of the sttlmStgInstrDB property.
*
* @return
* possible object is
* {@link SettlementStandingInstructionDatabase4Choice }
*
*/
public SettlementStandingInstructionDatabase4Choice getSttlmStgInstrDB() {
return sttlmStgInstrDB;
}
/**
* Sets the value of the sttlmStgInstrDB property.
*
* @param value
* allowed object is
* {@link SettlementStandingInstructionDatabase4Choice }
*
*/
public StandingSettlementInstruction11 setSttlmStgInstrDB(SettlementStandingInstructionDatabase4Choice value) {
this.sttlmStgInstrDB = value;
return this;
}
/**
* Gets the value of the ctrPty property.
*
* @return
* possible object is
* {@link Counterparty9Choice }
*
*/
public Counterparty9Choice getCtrPty() {
return ctrPty;
}
/**
* Sets the value of the ctrPty property.
*
* @param value
* allowed object is
* {@link Counterparty9Choice }
*
*/
public StandingSettlementInstruction11 setCtrPty(Counterparty9Choice value) {
this.ctrPty = value;
return this;
}
/**
* Gets the value of the vndr property.
*
* @return
* possible object is
* {@link PartyIdentification100 }
*
*/
public PartyIdentification100 getVndr() {
return vndr;
}
/**
* Sets the value of the vndr property.
*
* @param value
* allowed object is
* {@link PartyIdentification100 }
*
*/
public StandingSettlementInstruction11 setVndr(PartyIdentification100 value) {
this.vndr = value;
return this;
}
/**
* Gets the value of the othrDlvrgSttlmPties property.
*
* @return
* possible object is
* {@link SettlementParties36 }
*
*/
public SettlementParties36 getOthrDlvrgSttlmPties() {
return othrDlvrgSttlmPties;
}
/**
* Sets the value of the othrDlvrgSttlmPties property.
*
* @param value
* allowed object is
* {@link SettlementParties36 }
*
*/
public StandingSettlementInstruction11 setOthrDlvrgSttlmPties(SettlementParties36 value) {
this.othrDlvrgSttlmPties = value;
return this;
}
/**
* Gets the value of the othrRcvgSttlmPties property.
*
* @return
* possible object is
* {@link SettlementParties36 }
*
*/
public SettlementParties36 getOthrRcvgSttlmPties() {
return othrRcvgSttlmPties;
}
/**
* Sets the value of the othrRcvgSttlmPties property.
*
* @param value
* allowed object is
* {@link SettlementParties36 }
*
*/
public StandingSettlementInstruction11 setOthrRcvgSttlmPties(SettlementParties36 value) {
this.othrRcvgSttlmPties = 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