riv.se_apotekensservice.pris._1.BalansResponse Maven / Gradle / Ivy
package riv.se_apotekensservice.pris._1;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for BalansResponse complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="BalansResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="brutto" type="{http://www.w3.org/2001/XMLSchema}double"/>
* <element name="netto" type="{http://www.w3.org/2001/XMLSchema}double"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BalansResponse", propOrder = {
"brutto",
"netto"
})
public class BalansResponse {
protected double brutto;
protected double netto;
/**
* Gets the value of the brutto property.
*
*/
public double getBrutto() {
return brutto;
}
/**
* Sets the value of the brutto property.
*
*/
public void setBrutto(double value) {
this.brutto = value;
}
/**
* Gets the value of the netto property.
*
*/
public double getNetto() {
return netto;
}
/**
* Sets the value of the netto property.
*
*/
public void setNetto(double value) {
this.netto = value;
}
}