
package eo.service.client.cnife038;

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="telno" type="{http://client.service.eo/CNIFE038/}telno"/>
 *         &lt;element name="record" type="{http://client.service.eo/CNIFE038/}record" minOccurs="0"/>
 *       &lt;/all>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "service_if", propOrder = {

})
public class ServiceIf {

    @XmlElement(required = true)
    protected Telno telno;
    protected Record record;

    /**
     * Gets the value of the telno property.
     * 
     * @return
     *     possible object is
     *     {@link Telno }
     *     
     */
    public Telno getTelno() {
        return telno;
    }

    /**
     * Sets the value of the telno property.
     * 
     * @param value
     *     allowed object is
     *     {@link Telno }
     *     
     */
    public void setTelno(Telno value) {
        this.telno = 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;
    }

}
