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.



1571
1572
1573
1574
1575
1576
# File 'lib/docusign/docusign.rb', line 1571

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.



1566
1567
1568
# File 'lib/docusign/docusign.rb', line 1566

def name
  @name
end

#testSettingObject

Returns the value of attribute testSetting.



1569
1570
1571
# File 'lib/docusign/docusign.rb', line 1569

def testSetting
  @testSetting
end

#typeObject

Returns the value of attribute type.



1568
1569
1570
# File 'lib/docusign/docusign.rb', line 1568

def type
  @type
end

#valueObject

Returns the value of attribute value.



1567
1568
1569
# File 'lib/docusign/docusign.rb', line 1567

def value
  @value
end