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
customFieldType - Docusign::CustomFieldType
listItems - SOAP::SOAPString
Instance Attribute Summary collapse
-
#customFieldType ⇒ Object
Returns the value of attribute customFieldType.
-
#listItems ⇒ Object
Returns the value of attribute listItems.
-
#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, customFieldType = nil, listItems = nil) ⇒ CustomField
constructor
A new instance of CustomField.
Constructor Details
#initialize(name = nil, show = nil, required = nil, value = nil, customFieldType = nil, listItems = nil) ⇒ CustomField
Returns a new instance of CustomField.
564 565 566 567 568 569 570 571 |
# File 'lib/docusign/docusign.rb', line 564 def initialize(name = nil, show = nil, required = nil, value = nil, customFieldType = nil, listItems = nil) @name = name @show = show @required = required @value = value @customFieldType = customFieldType @listItems = listItems end |
Instance Attribute Details
#customFieldType ⇒ Object
Returns the value of attribute customFieldType.
561 562 563 |
# File 'lib/docusign/docusign.rb', line 561 def customFieldType @customFieldType end |
#listItems ⇒ Object
Returns the value of attribute listItems.
562 563 564 |
# File 'lib/docusign/docusign.rb', line 562 def listItems @listItems end |
#name ⇒ Object
Returns the value of attribute name.
557 558 559 |
# File 'lib/docusign/docusign.rb', line 557 def name @name end |
#required ⇒ Object
Returns the value of attribute required.
559 560 561 |
# File 'lib/docusign/docusign.rb', line 559 def required @required end |
#show ⇒ Object
Returns the value of attribute show.
558 559 560 |
# File 'lib/docusign/docusign.rb', line 558 def show @show end |
#value ⇒ Object
Returns the value of attribute value.
560 561 562 |
# File 'lib/docusign/docusign.rb', line 560 def value @value end |