com.prowidesoftware.swift.model.mx.dic.SignedQuantityFormat11 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.XmlSchemaType;
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;
/**
* Signed quantity of security formats.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SignedQuantityFormat11", propOrder = {
"shrtLngPos",
"qtyChc"
})
public class SignedQuantityFormat11 {
@XmlElement(name = "ShrtLngPos", required = true)
@XmlSchemaType(name = "string")
protected ShortLong1Code shrtLngPos;
@XmlElement(name = "QtyChc", required = true)
protected Quantity48Choice qtyChc;
/**
* Gets the value of the shrtLngPos property.
*
* @return
* possible object is
* {@link ShortLong1Code }
*
*/
public ShortLong1Code getShrtLngPos() {
return shrtLngPos;
}
/**
* Sets the value of the shrtLngPos property.
*
* @param value
* allowed object is
* {@link ShortLong1Code }
*
*/
public SignedQuantityFormat11 setShrtLngPos(ShortLong1Code value) {
this.shrtLngPos = value;
return this;
}
/**
* Gets the value of the qtyChc property.
*
* @return
* possible object is
* {@link Quantity48Choice }
*
*/
public Quantity48Choice getQtyChc() {
return qtyChc;
}
/**
* Sets the value of the qtyChc property.
*
* @param value
* allowed object is
* {@link Quantity48Choice }
*
*/
public SignedQuantityFormat11 setQtyChc(Quantity48Choice value) {
this.qtyChc = 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