treezor_client 1.10.0 → 1.11.0
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 +4 -4
- data/Gemfile.lock +1 -1
- data/docs/Document.md +1 -0
- data/lib/treezor_client/models/document.rb +10 -1
- data/lib/treezor_client/version.rb +1 -1
- data/pkg/treezor_client-1.10.0.gem +0 -0
- data/treezor_api_spec.yaml +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 84d4791aff6b999f30d15db773971ac9ef7fd0622f75f0a38a71833f4c33a63f
|
|
4
|
+
data.tar.gz: b84b519fb50cc7a6657c3144c7471cab8e4e950c6a40fbb30f16da88b4b00b59
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 43b9472dd945d592f62b1bff330e567296a5f38c5c873c98ed2b4ff585b65bf2fc5a3ac2a95929ac0a124c83d0f00059dcffb7e5917e28811a1199119ea334ce
|
|
7
|
+
data.tar.gz: d5b0a5d62f75b79d7d1e9884bca8ff253bc6ddfb0224e9bab2a5d8493d5334d5deb9d871a5c9639277893734e53a11e82df289f971ffe9ec82ce65e017ea9ea5
|
data/Gemfile.lock
CHANGED
data/docs/Document.md
CHANGED
|
@@ -16,6 +16,7 @@ Name | Type | Description | Notes
|
|
|
16
16
|
**file_name** | **String** | | [optional]
|
|
17
17
|
**temporary_url** | **String** | | [optional]
|
|
18
18
|
**temporary_url_thumb** | **String** | | [optional]
|
|
19
|
+
**information_status** | **String** | | [optional]
|
|
19
20
|
**created_date** | **String** | Date YYYY-MM-DD HH:MM:SS | [optional]
|
|
20
21
|
**modified_date** | **String** | Date YYYY-MM-DD HH:MM:SS | [optional]
|
|
21
22
|
**total_rows** | **Integer** | | [optional]
|
|
@@ -40,6 +40,8 @@ module TreezorClient
|
|
|
40
40
|
|
|
41
41
|
attr_accessor :temporary_url_thumb
|
|
42
42
|
|
|
43
|
+
attr_accessor :information_status
|
|
44
|
+
|
|
43
45
|
# Date YYYY-MM-DD HH:MM:SS
|
|
44
46
|
attr_accessor :created_date
|
|
45
47
|
|
|
@@ -86,6 +88,7 @@ module TreezorClient
|
|
|
86
88
|
:'file_name' => :'fileName',
|
|
87
89
|
:'temporary_url' => :'temporaryUrl',
|
|
88
90
|
:'temporary_url_thumb' => :'temporaryUrlThumb',
|
|
91
|
+
:'information_status' => :'informationStatus',
|
|
89
92
|
:'created_date' => :'createdDate',
|
|
90
93
|
:'modified_date' => :'modifiedDate',
|
|
91
94
|
:'total_rows' => :'totalRows'
|
|
@@ -108,6 +111,7 @@ module TreezorClient
|
|
|
108
111
|
:'file_name' => :'String',
|
|
109
112
|
:'temporary_url' => :'String',
|
|
110
113
|
:'temporary_url_thumb' => :'String',
|
|
114
|
+
:'information_status' => :'String',
|
|
111
115
|
:'created_date' => :'String',
|
|
112
116
|
:'modified_date' => :'String',
|
|
113
117
|
:'total_rows' => :'Integer'
|
|
@@ -174,6 +178,10 @@ module TreezorClient
|
|
|
174
178
|
self.temporary_url_thumb = attributes[:'temporaryUrlThumb']
|
|
175
179
|
end
|
|
176
180
|
|
|
181
|
+
if attributes.has_key?(:'informationStatus')
|
|
182
|
+
self.information_status = attributes[:'informationStatus']
|
|
183
|
+
end
|
|
184
|
+
|
|
177
185
|
if attributes.has_key?(:'createdDate')
|
|
178
186
|
self.created_date = attributes[:'createdDate']
|
|
179
187
|
end
|
|
@@ -230,6 +238,7 @@ module TreezorClient
|
|
|
230
238
|
file_name == o.file_name &&
|
|
231
239
|
temporary_url == o.temporary_url &&
|
|
232
240
|
temporary_url_thumb == o.temporary_url_thumb &&
|
|
241
|
+
information_status == o.information_status &&
|
|
233
242
|
created_date == o.created_date &&
|
|
234
243
|
modified_date == o.modified_date &&
|
|
235
244
|
total_rows == o.total_rows
|
|
@@ -244,7 +253,7 @@ module TreezorClient
|
|
|
244
253
|
# Calculates hash code according to all attributes.
|
|
245
254
|
# @return [Fixnum] Hash code
|
|
246
255
|
def hash
|
|
247
|
-
[document_id, document_tag, document_status, document_type_id, document_type, residence_id, client_id, user_id, user_lastname, user_firstname, file_name, temporary_url, temporary_url_thumb, created_date, modified_date, total_rows].hash
|
|
256
|
+
[document_id, document_tag, document_status, document_type_id, document_type, residence_id, client_id, user_id, user_lastname, user_firstname, file_name, temporary_url, temporary_url_thumb, information_status, created_date, modified_date, total_rows].hash
|
|
248
257
|
end
|
|
249
258
|
|
|
250
259
|
# Builds the object from hash
|
|
Binary file
|
data/treezor_api_spec.yaml
CHANGED
|
@@ -12311,6 +12311,8 @@ definitions:
|
|
|
12311
12311
|
type: string
|
|
12312
12312
|
temporaryUrlThumb:
|
|
12313
12313
|
type: string
|
|
12314
|
+
informationStatus:
|
|
12315
|
+
type: string
|
|
12314
12316
|
createdDate:
|
|
12315
12317
|
type: string
|
|
12316
12318
|
description: Date YYYY-MM-DD HH:MM:SS
|