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.



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

#accountIDObject

Returns the value of attribute accountID.



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

def accountID
  @accountID
end

#emailObject

Returns the value of attribute email.



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

def email
  @email
end

#goToEnvelopeIDObject

Returns the value of attribute goToEnvelopeID.



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

def goToEnvelopeID
  @goToEnvelopeID
end

#passwordObject

Returns the value of attribute password.



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

def password
  @password
end