groupdocs_signature_cloud 23.12 → 24.6
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e6a82b8736c2b8db47110cf52f2b92a8f5e9521c351c2dd543053baed6b20f41
|
4
|
+
data.tar.gz: 984296b34879f338d05a54e021fa5831da3b4b394c4687ac39fc5d975bdf0d5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: abea906a6c8b0fe8f937157fc7c79fc5fb1bbbb91e5a5687113b0dae2f38a95d6863a0bb7ae9c0e508a3258b0b1c09ae775689e0e94ba5dd7372d3c332918b18
|
7
|
+
data.tar.gz: 6d6fa9b69bc7154f93d43ec32c8f60d9db2ae4de6a502f6b4d547274ebcfce93af4ce28492b17ad9e91e270e1a1e72acaf6cef1669abec05e58082a2f69bfe7d
|
@@ -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.6'
|
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-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|