
package eo.service.client.fuife152;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * <p>Java class for service_if complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType name="service_if">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;all>
 *         &lt;element name="key_sysid" type="{http://client.service.eo/FUIFE152/}key_sysid"/>
 *         &lt;element name="key_svc_kei_no" type="{http://client.service.eo/FUIFE152/}key_svc_kei_no"/>
 *         &lt;element name="result_cd" type="{http://client.service.eo/FUIFE152/}result_cd" minOccurs="0"/>
 *       &lt;/all>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "service_if", propOrder = {

})
public class ServiceIf {

    @XmlElement(name = "key_sysid", required = true)
    protected KeySysid keySysid;
    @XmlElement(name = "key_svc_kei_no", required = true)
    protected KeySvcKeiNo keySvcKeiNo;
    @XmlElement(name = "result_cd")
    protected ResultCd resultCd;

    /**
     * Gets the value of the keySysid property.
     * 
     * @return
     *     possible object is
     *     {@link KeySysid }
     *     
     */
    public KeySysid getKeySysid() {
        return keySysid;
    }

    /**
     * Sets the value of the keySysid property.
     * 
     * @param value
     *     allowed object is
     *     {@link KeySysid }
     *     
     */
    public void setKeySysid(KeySysid value) {
        this.keySysid = value;
    }

    /**
     * Gets the value of the keySvcKeiNo property.
     * 
     * @return
     *     possible object is
     *     {@link KeySvcKeiNo }
     *     
     */
    public KeySvcKeiNo getKeySvcKeiNo() {
        return keySvcKeiNo;
    }

    /**
     * Sets the value of the keySvcKeiNo property.
     * 
     * @param value
     *     allowed object is
     *     {@link KeySvcKeiNo }
     *     
     */
    public void setKeySvcKeiNo(KeySvcKeiNo value) {
        this.keySvcKeiNo = value;
    }

    /**
     * Gets the value of the resultCd property.
     * 
     * @return
     *     possible object is
     *     {@link ResultCd }
     *     
     */
    public ResultCd getResultCd() {
        return resultCd;
    }

    /**
     * Sets the value of the resultCd property.
     * 
     * @param value
     *     allowed object is
     *     {@link ResultCd }
     *     
     */
    public void setResultCd(ResultCd value) {
        this.resultCd = value;
    }

}
