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