package echosign.api.clientv20.dto16; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Java class for WidgetItem complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="WidgetItem"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="documentKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="reusableDocumentStatus" type="{http://dto16.api.echosign}ReusableDocumentStatus" minOccurs="0"/> * <element name="javascript" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="modifiedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WidgetItem", propOrder = { "documentKey", "reusableDocumentStatus", "javascript", "modifiedDate", "name", "url" }) public class WidgetItem { @XmlElement(nillable = true) protected String documentKey; @XmlElement(nillable = true) protected ReusableDocumentStatus reusableDocumentStatus; @XmlElement(nillable = true) protected String javascript; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar modifiedDate; @XmlElement(nillable = true) protected String name; @XmlElement(nillable = true) protected String url; /** * Gets the value of the documentKey property. * * @return * possible object is * {@link String } * */ public String getDocumentKey() { return documentKey; } /** * Sets the value of the documentKey property. * * @param value * allowed object is * {@link String } * */ public void setDocumentKey(String value) { this.documentKey = value; } /** * Gets the value of the reusableDocumentStatus property. * * @return * possible object is * {@link ReusableDocumentStatus } * */ public ReusableDocumentStatus getReusableDocumentStatus() { return reusableDocumentStatus; } /** * Sets the value of the reusableDocumentStatus property. * * @param value * allowed object is * {@link ReusableDocumentStatus } * */ public void setReusableDocumentStatus(ReusableDocumentStatus value) { this.reusableDocumentStatus = value; } /** * Gets the value of the javascript property. * * @return * possible object is * {@link String } * */ public String getJavascript() { return javascript; } /** * Sets the value of the javascript property. * * @param value * allowed object is * {@link String } * */ public void setJavascript(String value) { this.javascript = value; } /** * Gets the value of the modifiedDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getModifiedDate() { return modifiedDate; } /** * Sets the value of the modifiedDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setModifiedDate(XMLGregorianCalendar value) { this.modifiedDate = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the url property. * * @return * possible object is * {@link String } * */ public String getUrl() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link String } * */ public void setUrl(String value) { this.url = value; } }