
package eo.service.client.ckife045;

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="func_code" type="{http://client.service.eo/CKIFE045/}func_code"/>
 *         &lt;element name="key_sysid" type="{http://client.service.eo/CKIFE045/}key_sysid"/>
 *         &lt;element name="record" type="{http://client.service.eo/CKIFE045/}record" minOccurs="0"/>
 *       &lt;/all>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "service_if", propOrder = {

})
public class ServiceIf {

    @XmlElement(name = "func_code", required = true)
    protected FuncCode funcCode;
    @XmlElement(name = "key_sysid", required = true)
    protected KeySysid keySysid;
    protected Record record;

    /**
     * Gets the value of the funcCode property.
     * 
     * @return
     *     possible object is
     *     {@link FuncCode }
     *     
     */
    public FuncCode getFuncCode() {
        return funcCode;
    }

    /**
     * Sets the value of the funcCode property.
     * 
     * @param value
     *     allowed object is
     *     {@link FuncCode }
     *     
     */
    public void setFuncCode(FuncCode value) {
        this.funcCode = value;
    }

    /**
     * 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 record property.
     * 
     * @return
     *     possible object is
     *     {@link Record }
     *     
     */
    public Record getRecord() {
        return record;
    }

    /**
     * Sets the value of the record property.
     * 
     * @param value
     *     allowed object is
     *     {@link Record }
     *     
     */
    public void setRecord(Record value) {
        this.record = value;
    }

}
