Class: Docusign::Credential::Login
- Inherits:
-
Object
- Object
- Docusign::Credential::Login
- Defined in:
- lib/docusign/credential.rb
Overview
http://www.docusign.net/API/CredentialLogin
email - SOAP::SOAPString
password - SOAP::SOAPString
Instance Attribute Summary collapse
-
#email ⇒ Object
Returns the value of attribute email.
-
#password ⇒ Object
Returns the value of attribute password.
Instance Method Summary collapse
-
#initialize(email = nil, password = nil) ⇒ Login
constructor
A new instance of Login.
Constructor Details
#initialize(email = nil, password = nil) ⇒ Login
Returns a new instance of Login.
65 66 67 68 |
# File 'lib/docusign/credential.rb', line 65 def initialize(email = nil, password = nil) @email = email @password = password end |
Instance Attribute Details
#email ⇒ Object
Returns the value of attribute email.
62 63 64 |
# File 'lib/docusign/credential.rb', line 62 def email @email end |
#password ⇒ Object
Returns the value of attribute password.
63 64 65 |
# File 'lib/docusign/credential.rb', line 63 def password @password end |