com.prowidesoftware.swift.model.mx.dic.SidePocketInformation2 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.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;
/**
* Information that identifies a side pocket in investment fund orders.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SidePocketInformation2", propOrder = {
"sdPcktInclsnInd",
"sdPcktId",
"sdPcktQty"
})
public class SidePocketInformation2 {
@XmlElement(name = "SdPcktInclsnInd")
protected Boolean sdPcktInclsnInd;
@XmlElement(name = "SdPcktId")
protected String sdPcktId;
@XmlElement(name = "SdPcktQty")
protected SidePocketQuantityAndAmount1 sdPcktQty;
/**
* Gets the value of the sdPcktInclsnInd property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isSdPcktInclsnInd() {
return sdPcktInclsnInd;
}
/**
* Sets the value of the sdPcktInclsnInd property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public SidePocketInformation2 setSdPcktInclsnInd(Boolean value) {
this.sdPcktInclsnInd = value;
return this;
}
/**
* Gets the value of the sdPcktId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSdPcktId() {
return sdPcktId;
}
/**
* Sets the value of the sdPcktId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public SidePocketInformation2 setSdPcktId(String value) {
this.sdPcktId = value;
return this;
}
/**
* Gets the value of the sdPcktQty property.
*
* @return
* possible object is
* {@link SidePocketQuantityAndAmount1 }
*
*/
public SidePocketQuantityAndAmount1 getSdPcktQty() {
return sdPcktQty;
}
/**
* Sets the value of the sdPcktQty property.
*
* @param value
* allowed object is
* {@link SidePocketQuantityAndAmount1 }
*
*/
public SidePocketInformation2 setSdPcktQty(SidePocketQuantityAndAmount1 value) {
this.sdPcktQty = 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