All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.ota_tools.jaxb.ota2010a.ping.TotalType Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2014.12.31 at 04:22:27 PM PST 
//


package net.sourceforge.ota_tools.jaxb.ota2010a.ping;

import java.math.BigDecimal;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * The total amount charged for the service including additional amounts and fees.
 * 
 * 

Java class for TotalType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="TotalType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Taxes" type="{http://www.opentravel.org/OTA/2003/05}TaxesType" minOccurs="0"/>
 *       </sequence>
 *       <attGroup ref="{http://www.opentravel.org/OTA/2003/05}CurrencyCodeGroup"/>
 *       <attribute name="AmountBeforeTax" type="{http://www.opentravel.org/OTA/2003/05}Money" />
 *       <attribute name="AmountAfterTax" type="{http://www.opentravel.org/OTA/2003/05}Money" />
 *       <attribute name="AdditionalFeesExcludedIndicator" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TotalType", propOrder = { "taxes" }) public class TotalType { @XmlElement(name = "Taxes") protected TaxesType taxes; @XmlAttribute(name = "AmountBeforeTax") protected BigDecimal amountBeforeTax; @XmlAttribute(name = "AmountAfterTax") protected BigDecimal amountAfterTax; @XmlAttribute(name = "AdditionalFeesExcludedIndicator") protected Boolean additionalFeesExcludedIndicator; @XmlAttribute(name = "CurrencyCode") protected String currencyCode; @XmlAttribute(name = "DecimalPlaces") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger decimalPlaces; /** * Gets the value of the taxes property. * * @return * possible object is * {@link TaxesType } * */ public TaxesType getTaxes() { return taxes; } /** * Sets the value of the taxes property. * * @param value * allowed object is * {@link TaxesType } * */ public void setTaxes(TaxesType value) { this.taxes = value; } /** * Gets the value of the amountBeforeTax property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getAmountBeforeTax() { return amountBeforeTax; } /** * Sets the value of the amountBeforeTax property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setAmountBeforeTax(BigDecimal value) { this.amountBeforeTax = value; } /** * Gets the value of the amountAfterTax property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getAmountAfterTax() { return amountAfterTax; } /** * Sets the value of the amountAfterTax property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setAmountAfterTax(BigDecimal value) { this.amountAfterTax = value; } /** * Gets the value of the additionalFeesExcludedIndicator property. * * @return * possible object is * {@link Boolean } * */ public Boolean getAdditionalFeesExcludedIndicator() { return additionalFeesExcludedIndicator; } /** * Sets the value of the additionalFeesExcludedIndicator property. * * @param value * allowed object is * {@link Boolean } * */ public void setAdditionalFeesExcludedIndicator(Boolean value) { this.additionalFeesExcludedIndicator = value; } /** * Gets the value of the currencyCode property. * * @return * possible object is * {@link String } * */ public String getCurrencyCode() { return currencyCode; } /** * Sets the value of the currencyCode property. * * @param value * allowed object is * {@link String } * */ public void setCurrencyCode(String value) { this.currencyCode = value; } /** * Gets the value of the decimalPlaces property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getDecimalPlaces() { return decimalPlaces; } /** * Sets the value of the decimalPlaces property. * * @param value * allowed object is * {@link BigInteger } * */ public void setDecimalPlaces(BigInteger value) { this.decimalPlaces = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy