Class: Docusign::CustomField

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

Overview

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

name - SOAP::SOAPString
show - SOAP::SOAPString
required - SOAP::SOAPString
value - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name = nil, show = nil, required = nil, value = nil) ⇒ CustomField

Returns a new instance of CustomField.



504
505
506
507
508
509
# File 'lib/docusign/docusign.rb', line 504

def initialize(name = nil, show = nil, required = nil, value = nil)
  @name = name
  @show = show
  @required = required
  @value = value
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



499
500
501
# File 'lib/docusign/docusign.rb', line 499

def name
  @name
end

#requiredObject

Returns the value of attribute required.



501
502
503
# File 'lib/docusign/docusign.rb', line 501

def required
  @required
end

#showObject

Returns the value of attribute show.



500
501
502
# File 'lib/docusign/docusign.rb', line 500

def show
  @show
end

#valueObject

Returns the value of attribute value.



502
503
504
# File 'lib/docusign/docusign.rb', line 502

def value
  @value
end