Class: DynamicPDFApi::SignatureFieldInformation
- Inherits:
-
Object
- Object
- DynamicPDFApi::SignatureFieldInformation
- Defined in:
- lib/ruby_client/SignatureFieldInformation.rb
Overview
Represents information of a signature field.
Instance Attribute Summary collapse
-
#name ⇒ Object
Gets or Sets the name of a signature field.
-
#signed ⇒ Object
Gets or Sets the boolean, indicating the field signed or not.
Instance Method Summary collapse
-
#initialize ⇒ SignatureFieldInformation
constructor
A new instance of SignatureFieldInformation.
Constructor Details
#initialize ⇒ SignatureFieldInformation
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
#name ⇒ Object
Gets or Sets the name of a signature field.
14 15 16 |
# File 'lib/ruby_client/SignatureFieldInformation.rb', line 14 def name @name end |
#signed ⇒ Object
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 |