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