com.prowidesoftware.swift.model.mx.dic.StandingSettlementInstruction4 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
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 = "StandingSettlementInstruction4", propOrder = {
"sttlmStgInstrDB",
"ctrPty",
"vndr",
"othrDlvrgSttlmPties",
"othrRcvgSttlmPties"
})
public class StandingSettlementInstruction4 {
@XmlElement(name = "SttlmStgInstrDB", required = true)
protected SettlementStandingInstructionDatabase1Choice sttlmStgInstrDB;
@XmlElement(name = "CtrPty", required = true)
protected Counterparty4Choice ctrPty;
@XmlElement(name = "Vndr")
protected PartyIdentification43Choice vndr;
@XmlElement(name = "OthrDlvrgSttlmPties")
protected SettlementParties11 othrDlvrgSttlmPties;
@XmlElement(name = "OthrRcvgSttlmPties")
protected SettlementParties11 othrRcvgSttlmPties;
/**
* Gets the value of the sttlmStgInstrDB property.
*
* @return
* possible object is
* {@link SettlementStandingInstructionDatabase1Choice }
*
*/
public SettlementStandingInstructionDatabase1Choice getSttlmStgInstrDB() {
return sttlmStgInstrDB;
}
/**
* Sets the value of the sttlmStgInstrDB property.
*
* @param value
* allowed object is
* {@link SettlementStandingInstructionDatabase1Choice }
*
*/
public StandingSettlementInstruction4 setSttlmStgInstrDB(SettlementStandingInstructionDatabase1Choice value) {
this.sttlmStgInstrDB = value;
return this;
}
/**
* Gets the value of the ctrPty property.
*
* @return
* possible object is
* {@link Counterparty4Choice }
*
*/
public Counterparty4Choice getCtrPty() {
return ctrPty;
}
/**
* Sets the value of the ctrPty property.
*
* @param value
* allowed object is
* {@link Counterparty4Choice }
*
*/
public StandingSettlementInstruction4 setCtrPty(Counterparty4Choice value) {
this.ctrPty = value;
return this;
}
/**
* Gets the value of the vndr property.
*
* @return
* possible object is
* {@link PartyIdentification43Choice }
*
*/
public PartyIdentification43Choice getVndr() {
return vndr;
}
/**
* Sets the value of the vndr property.
*
* @param value
* allowed object is
* {@link PartyIdentification43Choice }
*
*/
public StandingSettlementInstruction4 setVndr(PartyIdentification43Choice value) {
this.vndr = value;
return this;
}
/**
* Gets the value of the othrDlvrgSttlmPties property.
*
* @return
* possible object is
* {@link SettlementParties11 }
*
*/
public SettlementParties11 getOthrDlvrgSttlmPties() {
return othrDlvrgSttlmPties;
}
/**
* Sets the value of the othrDlvrgSttlmPties property.
*
* @param value
* allowed object is
* {@link SettlementParties11 }
*
*/
public StandingSettlementInstruction4 setOthrDlvrgSttlmPties(SettlementParties11 value) {
this.othrDlvrgSttlmPties = value;
return this;
}
/**
* Gets the value of the othrRcvgSttlmPties property.
*
* @return
* possible object is
* {@link SettlementParties11 }
*
*/
public SettlementParties11 getOthrRcvgSttlmPties() {
return othrRcvgSttlmPties;
}
/**
* Sets the value of the othrRcvgSttlmPties property.
*
* @param value
* allowed object is
* {@link SettlementParties11 }
*
*/
public StandingSettlementInstruction4 setOthrRcvgSttlmPties(SettlementParties11 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