Class: DynamicPDFApi::TextFieldInformation
- Inherits:
-
Object
- Object
- DynamicPDFApi::TextFieldInformation
- Defined in:
- lib/ruby_client/TextFieldInformation.rb
Overview
Represents information of a text field.
Instance Attribute Summary collapse
-
#default_value ⇒ Object
Gets or Sets the default value of the Text field.
-
#name ⇒ Object
Gets or Sets the name of the Text field.
-
#value ⇒ Object
Gets or Sets the value of the Text field.
Instance Method Summary collapse
-
#initialize ⇒ TextFieldInformation
constructor
A new instance of TextFieldInformation.
Constructor Details
#initialize ⇒ TextFieldInformation
Returns a new instance of TextFieldInformation.
6 7 8 9 10 |
# File 'lib/ruby_client/TextFieldInformation.rb', line 6 def initialize @name = nil @value = nil @default_value = nil end |
Instance Attribute Details
#default_value ⇒ Object
Gets or Sets the default value of the Text field.
25 26 27 |
# File 'lib/ruby_client/TextFieldInformation.rb', line 25 def default_value @default_value end |
#name ⇒ Object
Gets or Sets the name of the Text field.
15 16 17 |
# File 'lib/ruby_client/TextFieldInformation.rb', line 15 def name @name end |
#value ⇒ Object
Gets or Sets the value of the Text field.
20 21 22 |
# File 'lib/ruby_client/TextFieldInformation.rb', line 20 def value @value end |