Class: Docusign::Credential::RequestCorrectToken

Inherits:
Object
  • Object
show all
Defined in:
lib/docusign/credential.rb

Overview

http://www.docusign.net/API/CredentialRequestCorrectToken

email - SOAP::SOAPString
password - SOAP::SOAPString
envelopeID - SOAP::SOAPString
suppressNavigation - SOAP::SOAPBoolean
returnURL - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(email = nil, password = nil, envelopeID = nil, suppressNavigation = nil, returnURL = nil) ⇒ RequestCorrectToken

Returns a new instance of RequestCorrectToken.



176
177
178
179
180
181
182
# File 'lib/docusign/credential.rb', line 176

def initialize(email = nil, password = nil, envelopeID = nil, suppressNavigation = nil, returnURL = nil)
  @email = email
  @password = password
  @envelopeID = envelopeID
  @suppressNavigation = suppressNavigation
  @returnURL = returnURL
end

Instance Attribute Details

#emailObject

Returns the value of attribute email.



170
171
172
# File 'lib/docusign/credential.rb', line 170

def email
  @email
end

#envelopeIDObject

Returns the value of attribute envelopeID.



172
173
174
# File 'lib/docusign/credential.rb', line 172

def envelopeID
  @envelopeID
end

#passwordObject

Returns the value of attribute password.



171
172
173
# File 'lib/docusign/credential.rb', line 171

def password
  @password
end

#returnURLObject

Returns the value of attribute returnURL.



174
175
176
# File 'lib/docusign/credential.rb', line 174

def returnURL
  @returnURL
end

#suppressNavigationObject

Returns the value of attribute suppressNavigation.



173
174
175
# File 'lib/docusign/credential.rb', line 173

def suppressNavigation
  @suppressNavigation
end