All Downloads are FREE. Search and download functionalities are using the official Maven repository.

riv.se_apotekensservice.axs._1.KundinformationResponse Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version

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 KundinformationResponse complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="KundinformationResponse">
 *   <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"/>
 *         <element name="traffkod" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "KundinformationResponse", propOrder = { "lkfKod", "omradeskod", "redNamn", "samtycke", "statusKod", "traffkod" }) public class KundinformationResponse { protected String lkfKod; protected String omradeskod; protected String redNamn; @XmlElement(required = true) protected SamtyckeResponse samtycke; protected String statusKod; protected String traffkod; /** * 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; } /** * Gets the value of the traffkod property. * * @return * possible object is * {@link String } * */ public String getTraffkod() { return traffkod; } /** * Sets the value of the traffkod property. * * @param value * allowed object is * {@link String } * */ public void setTraffkod(String value) { this.traffkod = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy