riv.se_apotekensservice.pris._1.PrisfragaRadResponse 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 PrisfragaRadResponse complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PrisfragaRadResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="bruttoPris" type="{http://www.w3.org/2001/XMLSchema}double"/>
* <element name="prisTillagg" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="radNr" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PrisfragaRadResponse", propOrder = {
"bruttoPris",
"prisTillagg",
"radNr"
})
public class PrisfragaRadResponse {
protected double bruttoPris;
protected Double prisTillagg;
protected int radNr;
/**
* Gets the value of the bruttoPris property.
*
*/
public double getBruttoPris() {
return bruttoPris;
}
/**
* Sets the value of the bruttoPris property.
*
*/
public void setBruttoPris(double value) {
this.bruttoPris = value;
}
/**
* Gets the value of the prisTillagg property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getPrisTillagg() {
return prisTillagg;
}
/**
* Sets the value of the prisTillagg property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setPrisTillagg(Double value) {
this.prisTillagg = value;
}
/**
* Gets the value of the radNr property.
*
*/
public int getRadNr() {
return radNr;
}
/**
* Sets the value of the radNr property.
*
*/
public void setRadNr(int value) {
this.radNr = value;
}
}