/*
Copyright (C) DocuSign, Inc. All rights reserved.
This source code is intended only as a supplement to DocuSign SDK and/or on-line documentation.
This sample is designed to demonstrate DocuSign features and is not intended for production use.
Code and policy for a production application must be developed to meet the specific data and
security requirements of the application.
THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR
FITNESS FOR A PARTICULAR PURPOSE.
*/
package net.docusign.ws3_0.api;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="EnvelopeID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="AccountID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ReturnURL" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"envelopeID",
"accountID",
"returnURL"
})
@XmlRootElement(name = "RequestSenderToken")
public class RequestSenderToken {
@XmlElement(name = "EnvelopeID")
protected String envelopeID;
@XmlElement(name = "AccountID")
protected String accountID;
@XmlElement(name = "ReturnURL")
protected String returnURL;
/**
* Gets the value of the envelopeID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEnvelopeID() {
return envelopeID;
}
/**
* Sets the value of the envelopeID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEnvelopeID(String value) {
this.envelopeID = value;
}
/**
* Gets the value of the accountID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAccountID() {
return accountID;
}
/**
* Sets the value of the accountID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAccountID(String value) {
this.accountID = value;
}
/**
* Gets the value of the returnURL property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getReturnURL() {
return returnURL;
}
/**
* Sets the value of the returnURL property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setReturnURL(String value) {
this.returnURL = value;
}
}