Class: Docusign::Credential::GetAuthenticationToken
- Inherits:
-
Object
- Object
- Docusign::Credential::GetAuthenticationToken
- Defined in:
- lib/docusign/credential.rb
Overview
http://www.docusign.net/API/CredentialGetAuthenticationToken
email - SOAP::SOAPString
password - SOAP::SOAPString
accountID - SOAP::SOAPString
goToEnvelopeID - SOAP::SOAPString
Instance Attribute Summary collapse
-
#accountID ⇒ Object
Returns the value of attribute accountID.
-
#email ⇒ Object
Returns the value of attribute email.
-
#goToEnvelopeID ⇒ Object
Returns the value of attribute goToEnvelopeID.
-
#password ⇒ Object
Returns the value of attribute password.
Instance Method Summary collapse
-
#initialize(email = nil, password = nil, accountID = nil, goToEnvelopeID = nil) ⇒ GetAuthenticationToken
constructor
A new instance of GetAuthenticationToken.
Constructor Details
#initialize(email = nil, password = nil, accountID = nil, goToEnvelopeID = nil) ⇒ GetAuthenticationToken
Returns a new instance of GetAuthenticationToken.
117 118 119 120 121 122 |
# File 'lib/docusign/credential.rb', line 117 def initialize(email = nil, password = nil, accountID = nil, goToEnvelopeID = nil) @email = email @password = password @accountID = accountID @goToEnvelopeID = goToEnvelopeID end |
Instance Attribute Details
#accountID ⇒ Object
Returns the value of attribute accountID.
114 115 116 |
# File 'lib/docusign/credential.rb', line 114 def accountID @accountID end |
#email ⇒ Object
Returns the value of attribute email.
112 113 114 |
# File 'lib/docusign/credential.rb', line 112 def email @email end |
#goToEnvelopeID ⇒ Object
Returns the value of attribute goToEnvelopeID.
115 116 117 |
# File 'lib/docusign/credential.rb', line 115 def goToEnvelopeID @goToEnvelopeID end |
#password ⇒ Object
Returns the value of attribute password.
113 114 115 |
# File 'lib/docusign/credential.rb', line 113 def password @password end |