package echosign.api.clientv20.dto8; 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 WidgetPersonalizationInfo complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="WidgetPersonalizationInfo"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="allowManualVerification" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="comment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="expiration" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="reusable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WidgetPersonalizationInfo", propOrder = { "allowManualVerification", "comment", "email", "expiration", "reusable" }) public class WidgetPersonalizationInfo { @XmlElement(nillable = true) protected Boolean allowManualVerification; @XmlElement(nillable = true) protected String comment; @XmlElement(nillable = true) protected String email; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar expiration; @XmlElement(nillable = true) protected Boolean reusable; /** * Gets the value of the allowManualVerification property. * * @return * possible object is * {@link Boolean } * */ public Boolean isAllowManualVerification() { return allowManualVerification; } /** * Sets the value of the allowManualVerification property. * * @param value * allowed object is * {@link Boolean } * */ public void setAllowManualVerification(Boolean value) { this.allowManualVerification = value; } /** * Gets the value of the comment property. * * @return * possible object is * {@link String } * */ public String getComment() { return comment; } /** * Sets the value of the comment property. * * @param value * allowed object is * {@link String } * */ public void setComment(String value) { this.comment = value; } /** * Gets the value of the email property. * * @return * possible object is * {@link String } * */ public String getEmail() { return email; } /** * Sets the value of the email property. * * @param value * allowed object is * {@link String } * */ public void setEmail(String value) { this.email = value; } /** * Gets the value of the expiration property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getExpiration() { return expiration; } /** * Sets the value of the expiration property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setExpiration(XMLGregorianCalendar value) { this.expiration = value; } /** * Gets the value of the reusable property. * * @return * possible object is * {@link Boolean } * */ public Boolean isReusable() { return reusable; } /** * Sets the value of the reusable property. * * @param value * allowed object is * {@link Boolean } * */ public void setReusable(Boolean value) { this.reusable = value; } }