com.prowidesoftware.swift.model.mx.dic.BillingTaxCalculationMethod1Code 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.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for BillingTaxCalculationMethod1Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="BillingTaxCalculationMethod1Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="NTAX"/>
* <enumeration value="MTDA"/>
* <enumeration value="MTDB"/>
* <enumeration value="MTDC"/>
* <enumeration value="MTDD"/>
* <enumeration value="UDFD"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "BillingTaxCalculationMethod1Code")
@XmlEnum
public enum BillingTaxCalculationMethod1Code {
/**
* No taxes are calculated or due on this account.
*
*/
NTAX,
/**
* Line-by-line per service calculation and settlement currency translation.
*
*/
MTDA,
/**
* Line-by-line per service calculation with settlement currency translation performed on the statement tax total.
*
*/
MTDB,
/**
* Group tax calculation with group settlement currency translation.
*
*/
MTDC,
/**
* Line-by-line per service calculation with all charges and taxes due in the pricing currency.
*
*/
MTDD,
/**
* Tax calculation method is not defined or unknown.
*
*/
UDFD;
public String value() {
return name();
}
public static BillingTaxCalculationMethod1Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy