Class: Docusign::Credential::ArrayOfAccount::Account

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

Instance Method Summary collapse

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

#accountIDObject

Returns the value of attribute accountID.



16
17
18
# File 'lib/docusign/credential.rb', line 16

def accountID
  @accountID
end

#accountNameObject

Returns the value of attribute accountName.



17
18
19
# File 'lib/docusign/credential.rb', line 17

def accountName
  @accountName
end

#emailObject

Returns the value of attribute email.



20
21
22
# File 'lib/docusign/credential.rb', line 20

def email
  @email
end

#userIDObject

Returns the value of attribute userID.



18
19
20
# File 'lib/docusign/credential.rb', line 18

def userID
  @userID
end

#userNameObject

Returns the value of attribute userName.



19
20
21
# File 'lib/docusign/credential.rb', line 19

def userName
  @userName
end