com.prowidesoftware.swift.model.mx.dic.UnitPrice17 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;
/**
* Amount of money for which goods or services are offered, sold, or bought.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UnitPrice17", propOrder = {
"tp",
"val",
"taxblIncmPerShr",
"taxblIncmPerShrClctd"
})
public class UnitPrice17 {
@XmlElement(name = "Tp", required = true)
@XmlSchemaType(name = "string")
protected TypeOfPrice15Code tp;
@XmlElement(name = "Val", required = true)
protected PriceValue6 val;
@XmlElement(name = "TaxblIncmPerShr")
protected RestrictedFINActiveCurrencyAnd13DecimalAmount taxblIncmPerShr;
@XmlElement(name = "TaxblIncmPerShrClctd")
@XmlSchemaType(name = "string")
protected TaxableIncomePerShareCalculated2Code taxblIncmPerShrClctd;
/**
* Gets the value of the tp property.
*
* @return
* possible object is
* {@link TypeOfPrice15Code }
*
*/
public TypeOfPrice15Code getTp() {
return tp;
}
/**
* Sets the value of the tp property.
*
* @param value
* allowed object is
* {@link TypeOfPrice15Code }
*
*/
public UnitPrice17 setTp(TypeOfPrice15Code value) {
this.tp = value;
return this;
}
/**
* Gets the value of the val property.
*
* @return
* possible object is
* {@link PriceValue6 }
*
*/
public PriceValue6 getVal() {
return val;
}
/**
* Sets the value of the val property.
*
* @param value
* allowed object is
* {@link PriceValue6 }
*
*/
public UnitPrice17 setVal(PriceValue6 value) {
this.val = value;
return this;
}
/**
* Gets the value of the taxblIncmPerShr property.
*
* @return
* possible object is
* {@link RestrictedFINActiveCurrencyAnd13DecimalAmount }
*
*/
public RestrictedFINActiveCurrencyAnd13DecimalAmount getTaxblIncmPerShr() {
return taxblIncmPerShr;
}
/**
* Sets the value of the taxblIncmPerShr property.
*
* @param value
* allowed object is
* {@link RestrictedFINActiveCurrencyAnd13DecimalAmount }
*
*/
public UnitPrice17 setTaxblIncmPerShr(RestrictedFINActiveCurrencyAnd13DecimalAmount value) {
this.taxblIncmPerShr = value;
return this;
}
/**
* Gets the value of the taxblIncmPerShrClctd property.
*
* @return
* possible object is
* {@link TaxableIncomePerShareCalculated2Code }
*
*/
public TaxableIncomePerShareCalculated2Code getTaxblIncmPerShrClctd() {
return taxblIncmPerShrClctd;
}
/**
* Sets the value of the taxblIncmPerShrClctd property.
*
* @param value
* allowed object is
* {@link TaxableIncomePerShareCalculated2Code }
*
*/
public UnitPrice17 setTaxblIncmPerShrClctd(TaxableIncomePerShareCalculated2Code value) {
this.taxblIncmPerShrClctd = 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