Class: Docusign::Credential::RequestSenderToken

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

Instance Method Summary collapse

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

#accountIDObject

Returns the value of attribute accountID.



140
141
142
# File 'lib/docusign/credential.rb', line 140

def accountID
  @accountID
end

#emailObject

Returns the value of attribute email.



138
139
140
# File 'lib/docusign/credential.rb', line 138

def email
  @email
end

#envelopeIDObject

Returns the value of attribute envelopeID.



141
142
143
# File 'lib/docusign/credential.rb', line 141

def envelopeID
  @envelopeID
end

#passwordObject

Returns the value of attribute password.



139
140
141
# File 'lib/docusign/credential.rb', line 139

def password
  @password
end

#returnURLObject

Returns the value of attribute returnURL.



142
143
144
# File 'lib/docusign/credential.rb', line 142

def returnURL
  @returnURL
end