Class: DynamicPDFApi::TextFieldInformation

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

Overview

Represents information of a text field.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeTextFieldInformation

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_valueObject

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

#nameObject

Gets or Sets the name of the Text field.



15
16
17
# File 'lib/ruby_client/TextFieldInformation.rb', line 15

def name
  @name
end

#valueObject

Gets or Sets the value of the Text field.



20
21
22
# File 'lib/ruby_client/TextFieldInformation.rb', line 20

def value
  @value
end