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



421
422
423
424
425
426
# File 'lib/docusign/docusign.rb', line 421

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.



416
417
418
# File 'lib/docusign/docusign.rb', line 416

def name
  @name
end

#requiredObject

Returns the value of attribute required.



418
419
420
# File 'lib/docusign/docusign.rb', line 418

def required
  @required
end

#showObject

Returns the value of attribute show.



417
418
419
# File 'lib/docusign/docusign.rb', line 417

def show
  @show
end

#valueObject

Returns the value of attribute value.



419
420
421
# File 'lib/docusign/docusign.rb', line 419

def value
  @value
end