com.prowidesoftware.swift.model.mx.dic.OrderSide1 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.XmlSchemaType;
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;
/**
* Indicates in which direction the intention is to transfer the ownership of a financial instrument.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OrderSide1", propOrder = {
"sd",
"allOrdrsInd"
})
public class OrderSide1 {
@XmlElement(name = "Sd")
@XmlSchemaType(name = "string")
protected Side1Code sd;
@XmlElement(name = "AllOrdrsInd")
protected Boolean allOrdrsInd;
/**
* Gets the value of the sd property.
*
* @return
* possible object is
* {@link Side1Code }
*
*/
public Side1Code getSd() {
return sd;
}
/**
* Sets the value of the sd property.
*
* @param value
* allowed object is
* {@link Side1Code }
*
*/
public OrderSide1 setSd(Side1Code value) {
this.sd = value;
return this;
}
/**
* Gets the value of the allOrdrsInd property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAllOrdrsInd() {
return allOrdrsInd;
}
/**
* Sets the value of the allOrdrsInd property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public OrderSide1 setAllOrdrsInd(Boolean value) {
this.allOrdrsInd = 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