Class: Docusign::CustomField
- Inherits:
-
Object
- Object
- Docusign::CustomField
- 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
-
#name ⇒ Object
Returns the value of attribute name.
-
#required ⇒ Object
Returns the value of attribute required.
-
#show ⇒ Object
Returns the value of attribute show.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Method Summary collapse
-
#initialize(name = nil, show = nil, required = nil, value = nil) ⇒ CustomField
constructor
A new instance of CustomField.
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
#name ⇒ Object
Returns the value of attribute name.
416 417 418 |
# File 'lib/docusign/docusign.rb', line 416 def name @name end |
#required ⇒ Object
Returns the value of attribute required.
418 419 420 |
# File 'lib/docusign/docusign.rb', line 418 def required @required end |
#show ⇒ Object
Returns the value of attribute show.
417 418 419 |
# File 'lib/docusign/docusign.rb', line 417 def show @show end |
#value ⇒ Object
Returns the value of attribute value.
419 420 421 |
# File 'lib/docusign/docusign.rb', line 419 def value @value end |