groupdocs_signature_cloud 23.12 → 24.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e527506f61c7cf26a4bd9d457381eb2274ef7b31d445aa7ba70df584cca44492
|
4
|
+
data.tar.gz: f9db5424502dda30eb8a20fa361d0eafec0780dccacbac8285aa6978fde16ad0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 01eb9cea47764021e20c99a156af86fab343cc840ce7182b0ca44b04e098e8f2f685be1de76839dd1f372f7f50ed7d0d8b622b3382050cdff06830f259b97d69
|
7
|
+
data.tar.gz: 68fbd9e7a517cd1a222a979a5618d76856e30d3bf00fc550277ace462ba225e99562a944961f96c17b2c1291d63d2553ae24b7fa01564190920000b211a43424
|
@@ -111,6 +111,12 @@ module GroupDocsSignatureCloud
|
|
111
111
|
|
112
112
|
# Options for signing VBA project
|
113
113
|
attr_accessor :digital_vba
|
114
|
+
|
115
|
+
# The time the document was signed.
|
116
|
+
attr_accessor :sign_time
|
117
|
+
|
118
|
+
# The signing purpose comment.
|
119
|
+
attr_accessor :comments
|
114
120
|
class EnumAttributeValidator
|
115
121
|
attr_reader :datatype
|
116
122
|
attr_reader :allowable_values
|
@@ -162,7 +168,9 @@ module GroupDocsSignatureCloud
|
|
162
168
|
:'password' => :'Password',
|
163
169
|
:'certificate_file_path' => :'CertificateFilePath',
|
164
170
|
:'x_ad_es_type' => :'XAdESType',
|
165
|
-
:'digital_vba' => :'DigitalVBA'
|
171
|
+
:'digital_vba' => :'DigitalVBA',
|
172
|
+
:'sign_time' => :'SignTime',
|
173
|
+
:'comments' => :'Comments'
|
166
174
|
}
|
167
175
|
end
|
168
176
|
|
@@ -195,7 +203,9 @@ module GroupDocsSignatureCloud
|
|
195
203
|
:'password' => :'String',
|
196
204
|
:'certificate_file_path' => :'String',
|
197
205
|
:'x_ad_es_type' => :'String',
|
198
|
-
:'digital_vba' => :'DigitalVBA'
|
206
|
+
:'digital_vba' => :'DigitalVBA',
|
207
|
+
:'sign_time' => :'DateTime',
|
208
|
+
:'comments' => :'String'
|
199
209
|
}
|
200
210
|
end
|
201
211
|
|
@@ -315,6 +325,14 @@ module GroupDocsSignatureCloud
|
|
315
325
|
self.digital_vba = attributes[:'DigitalVBA']
|
316
326
|
end
|
317
327
|
|
328
|
+
if attributes.key?(:'SignTime')
|
329
|
+
self.sign_time = attributes[:'SignTime']
|
330
|
+
end
|
331
|
+
|
332
|
+
if attributes.key?(:'Comments')
|
333
|
+
self.comments = attributes[:'Comments']
|
334
|
+
end
|
335
|
+
|
318
336
|
end
|
319
337
|
|
320
338
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -548,7 +566,9 @@ module GroupDocsSignatureCloud
|
|
548
566
|
password == other.password &&
|
549
567
|
certificate_file_path == other.certificate_file_path &&
|
550
568
|
x_ad_es_type == other.x_ad_es_type &&
|
551
|
-
digital_vba == other.digital_vba
|
569
|
+
digital_vba == other.digital_vba &&
|
570
|
+
sign_time == other.sign_time &&
|
571
|
+
comments == other.comments
|
552
572
|
end
|
553
573
|
|
554
574
|
# @see the `==` method
|
@@ -560,7 +580,7 @@ module GroupDocsSignatureCloud
|
|
560
580
|
# Calculates hash code according to all attributes.
|
561
581
|
# @return [Fixnum] Hash code
|
562
582
|
def hash
|
563
|
-
[signature_type, page, all_pages, pages_setup, appearance, image_file_path, left, top, width, height, location_measure_type, size_measure_type, rotation_angle, horizontal_alignment, vertical_alignment, margin, margin_measure_type, transparency, border, reason, contact, location, visible, password, certificate_file_path, x_ad_es_type, digital_vba].hash
|
583
|
+
[signature_type, page, all_pages, pages_setup, appearance, image_file_path, left, top, width, height, location_measure_type, size_measure_type, rotation_angle, horizontal_alignment, vertical_alignment, margin, margin_measure_type, transparency, border, reason, contact, location, visible, password, certificate_file_path, x_ad_es_type, digital_vba, sign_time, comments].hash
|
564
584
|
end
|
565
585
|
|
566
586
|
# Downcases first letter.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: groupdocs_signature_cloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '
|
4
|
+
version: '24.4'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- GroupDocs
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-04-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|