Class: Docusign::Credential::GetAuthenticationToken

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(email = nil, password = nil, accountID = nil, goToEnvelopeID = nil) ⇒ GetAuthenticationToken

Returns a new instance of GetAuthenticationToken.



113
114
115
116
117
118
# File 'lib/docusign/credential.rb', line 113

def initialize(email = nil, password = nil, accountID = nil, goToEnvelopeID = nil)
  @email = email
  @password = password
  @accountID = accountID
  @goToEnvelopeID = goToEnvelopeID
end

Instance Attribute Details

#accountIDObject

Returns the value of attribute accountID.



110
111
112
# File 'lib/docusign/credential.rb', line 110

def accountID
  @accountID
end

#emailObject

Returns the value of attribute email.



108
109
110
# File 'lib/docusign/credential.rb', line 108

def email
  @email
end

#goToEnvelopeIDObject

Returns the value of attribute goToEnvelopeID.



111
112
113
# File 'lib/docusign/credential.rb', line 111

def goToEnvelopeID
  @goToEnvelopeID
end

#passwordObject

Returns the value of attribute password.



109
110
111
# File 'lib/docusign/credential.rb', line 109

def password
  @password
end