riv.se_apotekensservice.expo._1.OppethallandeRequest Maven / Gradle / Ivy
package riv.se_apotekensservice.expo._1;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for OppethallandeRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="OppethallandeRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="dagBenamning" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="lunchFrom" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="lunchTom" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="oppnar" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="slutDatum" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="stanger" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="startDatum" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="tfStangtOrsak" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="typ" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="veckodagnr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OppethallandeRequest", propOrder = {
"dagBenamning",
"lunchFrom",
"lunchTom",
"oppnar",
"slutDatum",
"stanger",
"startDatum",
"tfStangtOrsak",
"typ",
"veckodagnr"
})
public class OppethallandeRequest {
protected String dagBenamning;
protected String lunchFrom;
protected String lunchTom;
protected String oppnar;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar slutDatum;
protected String stanger;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar startDatum;
protected String tfStangtOrsak;
@XmlElement(required = true)
protected String typ;
protected String veckodagnr;
/**
* Gets the value of the dagBenamning property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDagBenamning() {
return dagBenamning;
}
/**
* Sets the value of the dagBenamning property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDagBenamning(String value) {
this.dagBenamning = value;
}
/**
* Gets the value of the lunchFrom property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLunchFrom() {
return lunchFrom;
}
/**
* Sets the value of the lunchFrom property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLunchFrom(String value) {
this.lunchFrom = value;
}
/**
* Gets the value of the lunchTom property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLunchTom() {
return lunchTom;
}
/**
* Sets the value of the lunchTom property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLunchTom(String value) {
this.lunchTom = value;
}
/**
* Gets the value of the oppnar property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOppnar() {
return oppnar;
}
/**
* Sets the value of the oppnar property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOppnar(String value) {
this.oppnar = value;
}
/**
* Gets the value of the slutDatum property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getSlutDatum() {
return slutDatum;
}
/**
* Sets the value of the slutDatum property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setSlutDatum(XMLGregorianCalendar value) {
this.slutDatum = value;
}
/**
* Gets the value of the stanger property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStanger() {
return stanger;
}
/**
* Sets the value of the stanger property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStanger(String value) {
this.stanger = value;
}
/**
* Gets the value of the startDatum property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getStartDatum() {
return startDatum;
}
/**
* Sets the value of the startDatum property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setStartDatum(XMLGregorianCalendar value) {
this.startDatum = value;
}
/**
* Gets the value of the tfStangtOrsak property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTfStangtOrsak() {
return tfStangtOrsak;
}
/**
* Sets the value of the tfStangtOrsak property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTfStangtOrsak(String value) {
this.tfStangtOrsak = value;
}
/**
* Gets the value of the typ property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTyp() {
return typ;
}
/**
* Sets the value of the typ property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTyp(String value) {
this.typ = value;
}
/**
* Gets the value of the veckodagnr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVeckodagnr() {
return veckodagnr;
}
/**
* Sets the value of the veckodagnr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVeckodagnr(String value) {
this.veckodagnr = value;
}
}