Class: Docusign::Credential::RequestSenderToken
- Inherits:
-
Object
- Object
- Docusign::Credential::RequestSenderToken
- Defined in:
- lib/docusign/credential.rb
Overview
http://www.docusign.net/API/CredentialRequestSenderToken
email - SOAP::SOAPString
password - SOAP::SOAPString
accountID - SOAP::SOAPString
envelopeID - SOAP::SOAPString
returnURL - SOAP::SOAPString
Instance Attribute Summary collapse
-
#accountID ⇒ Object
Returns the value of attribute accountID.
-
#email ⇒ Object
Returns the value of attribute email.
-
#envelopeID ⇒ Object
Returns the value of attribute envelopeID.
-
#password ⇒ Object
Returns the value of attribute password.
-
#returnURL ⇒ Object
Returns the value of attribute returnURL.
Instance Method Summary collapse
-
#initialize(email = nil, password = nil, accountID = nil, envelopeID = nil, returnURL = nil) ⇒ RequestSenderToken
constructor
A new instance of RequestSenderToken.
Constructor Details
#initialize(email = nil, password = nil, accountID = nil, envelopeID = nil, returnURL = nil) ⇒ RequestSenderToken
Returns a new instance of RequestSenderToken.
144 145 146 147 148 149 150 |
# File 'lib/docusign/credential.rb', line 144 def initialize(email = nil, password = nil, accountID = nil, envelopeID = nil, returnURL = nil) @email = email @password = password @accountID = accountID @envelopeID = envelopeID @returnURL = returnURL end |
Instance Attribute Details
#accountID ⇒ Object
Returns the value of attribute accountID.
140 141 142 |
# File 'lib/docusign/credential.rb', line 140 def accountID @accountID end |
#email ⇒ Object
Returns the value of attribute email.
138 139 140 |
# File 'lib/docusign/credential.rb', line 138 def email @email end |
#envelopeID ⇒ Object
Returns the value of attribute envelopeID.
141 142 143 |
# File 'lib/docusign/credential.rb', line 141 def envelopeID @envelopeID end |
#password ⇒ Object
Returns the value of attribute password.
139 140 141 |
# File 'lib/docusign/credential.rb', line 139 def password @password end |
#returnURL ⇒ Object
Returns the value of attribute returnURL.
142 143 144 |
# File 'lib/docusign/credential.rb', line 142 def returnURL @returnURL end |