riv.se_apotekensservice.axs._1.PatientInformationResponse Maven / Gradle / Ivy
package riv.se_apotekensservice.axs._1;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for PatientInformationResponse complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PatientInformationResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="lkfKod" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="omradeskod" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="redNamn" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="samtycke" type="{urn:riv:se.apotekensservice:axs:1}SamtyckeResponse"/>
* <element name="statusKod" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PatientInformationResponse", propOrder = {
"lkfKod",
"omradeskod",
"redNamn",
"samtycke",
"statusKod"
})
public class PatientInformationResponse {
protected String lkfKod;
protected String omradeskod;
protected String redNamn;
@XmlElement(required = true)
protected SamtyckeResponse samtycke;
protected String statusKod;
/**
* Gets the value of the lkfKod property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLkfKod() {
return lkfKod;
}
/**
* Sets the value of the lkfKod property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLkfKod(String value) {
this.lkfKod = value;
}
/**
* Gets the value of the omradeskod property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOmradeskod() {
return omradeskod;
}
/**
* Sets the value of the omradeskod property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOmradeskod(String value) {
this.omradeskod = value;
}
/**
* Gets the value of the redNamn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRedNamn() {
return redNamn;
}
/**
* Sets the value of the redNamn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRedNamn(String value) {
this.redNamn = value;
}
/**
* Gets the value of the samtycke property.
*
* @return
* possible object is
* {@link SamtyckeResponse }
*
*/
public SamtyckeResponse getSamtycke() {
return samtycke;
}
/**
* Sets the value of the samtycke property.
*
* @param value
* allowed object is
* {@link SamtyckeResponse }
*
*/
public void setSamtycke(SamtyckeResponse value) {
this.samtycke = value;
}
/**
* Gets the value of the statusKod property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStatusKod() {
return statusKod;
}
/**
* Sets the value of the statusKod property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStatusKod(String value) {
this.statusKod = value;
}
}