Class: Docusign::AccountSetting

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

Overview

http://www.docusign.net/API/3.0AccountSetting

name - SOAP::SOAPString
value - SOAP::SOAPString
type - SOAP::SOAPString
testSetting - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name = nil, value = nil, type = nil, testSetting = nil) ⇒ AccountSetting

Returns a new instance of AccountSetting.



1406
1407
1408
1409
1410
1411
# File 'lib/docusign/docusign.rb', line 1406

def initialize(name = nil, value = nil, type = nil, testSetting = nil)
  @name = name
  @value = value
  @type = type
  @testSetting = testSetting
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



1401
1402
1403
# File 'lib/docusign/docusign.rb', line 1401

def name
  @name
end

#testSettingObject

Returns the value of attribute testSetting.



1404
1405
1406
# File 'lib/docusign/docusign.rb', line 1404

def testSetting
  @testSetting
end

#typeObject

Returns the value of attribute type.



1403
1404
1405
# File 'lib/docusign/docusign.rb', line 1403

def type
  @type
end

#valueObject

Returns the value of attribute value.



1402
1403
1404
# File 'lib/docusign/docusign.rb', line 1402

def value
  @value
end