package com.thesecretserver.service; 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 GetUserScriptResult complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="GetUserScriptResult"> * <complexContent> * <extension base="{urn:thesecretserver.com}WebServiceResult"> * <sequence> * <element name="UserScript" type="{urn:thesecretserver.com}UserScript" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GetUserScriptResult", propOrder = { "userScript" }) public class GetUserScriptResult extends WebServiceResult { @XmlElement(name = "UserScript") protected UserScript userScript; /** * Gets the value of the userScript property. * * @return * possible object is * {@link UserScript } * */ public UserScript getUserScript() { return userScript; } /** * Sets the value of the userScript property. * * @param value * allowed object is * {@link UserScript } * */ public void setUserScript(UserScript value) { this.userScript = value; } }