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; import echosign.api.clientv20.dto12.SendDocumentInteractiveResultErrorCode; /** * <p>Java class for SendDocumentInteractiveResult complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SendDocumentInteractiveResult"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="documentKey" type="{http://dto16.api.echosign}DocumentKey" minOccurs="0"/> * <element name="embeddedCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="errorCode" type="{http://dto12.api.echosign}SendDocumentInteractiveResultErrorCode" minOccurs="0"/> * <element name="errorMessage" 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="success" type="{http://www.w3.org/2001/XMLSchema}boolean" 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 = "SendDocumentInteractiveResult", propOrder = { "documentKey", "embeddedCode", "errorCode", "errorMessage", "expiration", "success", "url" }) public class SendDocumentInteractiveResult { @XmlElement(nillable = true) protected DocumentKey documentKey; @XmlElement(nillable = true) protected String embeddedCode; @XmlElement(nillable = true) protected SendDocumentInteractiveResultErrorCode errorCode; @XmlElement(nillable = true) protected String errorMessage; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar expiration; protected Boolean success; @XmlElement(nillable = true) protected String url; /** * Gets the value of the documentKey property. * * @return * possible object is * {@link DocumentKey } * */ public DocumentKey getDocumentKey() { return documentKey; } /** * Sets the value of the documentKey property. * * @param value * allowed object is * {@link DocumentKey } * */ public void setDocumentKey(DocumentKey value) { this.documentKey = value; } /** * Gets the value of the embeddedCode property. * * @return * possible object is * {@link String } * */ public String getEmbeddedCode() { return embeddedCode; } /** * Sets the value of the embeddedCode property. * * @param value * allowed object is * {@link String } * */ public void setEmbeddedCode(String value) { this.embeddedCode = value; } /** * Gets the value of the errorCode property. * * @return * possible object is * {@link SendDocumentInteractiveResultErrorCode } * */ public SendDocumentInteractiveResultErrorCode getErrorCode() { return errorCode; } /** * Sets the value of the errorCode property. * * @param value * allowed object is * {@link SendDocumentInteractiveResultErrorCode } * */ public void setErrorCode(SendDocumentInteractiveResultErrorCode value) { this.errorCode = value; } /** * Gets the value of the errorMessage property. * * @return * possible object is * {@link String } * */ public String getErrorMessage() { return errorMessage; } /** * Sets the value of the errorMessage property. * * @param value * allowed object is * {@link String } * */ public void setErrorMessage(String value) { this.errorMessage = 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 success property. * * @return * possible object is * {@link Boolean } * */ public Boolean isSuccess() { return success; } /** * Sets the value of the success property. * * @param value * allowed object is * {@link Boolean } * */ public void setSuccess(Boolean value) { this.success = 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; } }