Class: Docusign::Credential::ArrayOfAccount::Account
- Inherits:
-
Object
- Object
- Docusign::Credential::ArrayOfAccount::Account
- Defined in:
- lib/docusign/credential.rb
Overview
http://www.docusign.net/API/CredentialAccount
accountID - SOAP::SOAPString
accountName - SOAP::SOAPString
userID - SOAP::SOAPString
userName - SOAP::SOAPString
email - SOAP::SOAPString
Instance Attribute Summary collapse
-
#accountID ⇒ Object
Returns the value of attribute accountID.
-
#accountName ⇒ Object
Returns the value of attribute accountName.
-
#email ⇒ Object
Returns the value of attribute email.
-
#userID ⇒ Object
Returns the value of attribute userID.
-
#userName ⇒ Object
Returns the value of attribute userName.
Instance Method Summary collapse
-
#initialize(accountID = nil, accountName = nil, userID = nil, userName = nil, email = nil) ⇒ Account
constructor
A new instance of Account.
Constructor Details
#initialize(accountID = nil, accountName = nil, userID = nil, userName = nil, email = nil) ⇒ Account
Returns a new instance of Account.
22 23 24 25 26 27 28 |
# File 'lib/docusign/credential.rb', line 22 def initialize(accountID = nil, accountName = nil, userID = nil, userName = nil, email = nil) @accountID = accountID @accountName = accountName @userID = userID @userName = userName @email = email end |
Instance Attribute Details
#accountID ⇒ Object
Returns the value of attribute accountID.
16 17 18 |
# File 'lib/docusign/credential.rb', line 16 def accountID @accountID end |
#accountName ⇒ Object
Returns the value of attribute accountName.
17 18 19 |
# File 'lib/docusign/credential.rb', line 17 def accountName @accountName end |
#email ⇒ Object
Returns the value of attribute email.
20 21 22 |
# File 'lib/docusign/credential.rb', line 20 def email @email end |
#userID ⇒ Object
Returns the value of attribute userID.
18 19 20 |
# File 'lib/docusign/credential.rb', line 18 def userID @userID end |
#userName ⇒ Object
Returns the value of attribute userName.
19 20 21 |
# File 'lib/docusign/credential.rb', line 19 def userName @userName end |