Class: DynamicPDFApi::SignatureFieldInformation

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

Overview

Represents information of a signature field.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeSignatureFieldInformation

Returns a new instance of SignatureFieldInformation.



6
7
8
9
# File 'lib/ruby_client/SignatureFieldInformation.rb', line 6

def initialize
  @name = nil
  @signed = nil
end

Instance Attribute Details

#nameObject

Gets or Sets the name of a signature field.



14
15
16
# File 'lib/ruby_client/SignatureFieldInformation.rb', line 14

def name
  @name
end

#signedObject

Gets or Sets the boolean, indicating the field signed or not.



19
20
21
# File 'lib/ruby_client/SignatureFieldInformation.rb', line 19

def signed
  @signed
end