// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2015.03.18 at 03:48:09 PM CET // package ch.fd.invoice440.request; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for recordDRGType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="recordDRGType"> * <complexContent> * <extension base="{http://www.forum-datenaustausch.ch/invoice}recordServiceType"> * <attribute name="tariff_type" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <pattern value="[0-9A-Z]{3}"/> * </restriction> * </simpleType> * </attribute> * <attribute name="cost_fraction" default="1.0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}double"> * <minInclusive value="0.0"/> * </restriction> * </simpleType> * </attribute> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "recordDRGType") public class RecordDRGType extends RecordServiceType { @XmlAttribute(name = "tariff_type", required = true) protected String tariffType; @XmlAttribute(name = "cost_fraction") protected Double costFraction; /** * Gets the value of the tariffType property. * * @return * possible object is * {@link String } * */ public String getTariffType() { return tariffType; } /** * Sets the value of the tariffType property. * * @param value * allowed object is * {@link String } * */ public void setTariffType(String value) { this.tariffType = value; } /** * Gets the value of the costFraction property. * * @return * possible object is * {@link Double } * */ public double getCostFraction() { if (costFraction == null) { return 1.0D; } else { return costFraction; } } /** * Sets the value of the costFraction property. * * @param value * allowed object is * {@link Double } * */ public void setCostFraction(Double value) { this.costFraction = value; } }