treezor_client 1.10.0 → 1.11.0

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: 04deccebf5a8065908390bd215c1870a54ffa88a09ec9b20ead57d4c6eb2bc4e
4
- data.tar.gz: cb4d77767af6219c8e5e9e770d9817c6b3d4f58786fbf2ea492de3e746c17708
3
+ metadata.gz: 84d4791aff6b999f30d15db773971ac9ef7fd0622f75f0a38a71833f4c33a63f
4
+ data.tar.gz: b84b519fb50cc7a6657c3144c7471cab8e4e950c6a40fbb30f16da88b4b00b59
5
5
  SHA512:
6
- metadata.gz: 1ae3d8ad0db335ed1e609556759a61635e6cb5335198cfbc5847ebb85ecdde4128f9d7e43a86fc8267f39be7de9828ec612b6d7f58bfee8a3926cbdbcd56259f
7
- data.tar.gz: c2c849ee3b81f3457171362a57aa7f8bf114ab8a9b03a036d7958fbc2d4ef552c3ca90c01319ffb15ffe268936ae66d9f52bcafd354d03d37fa5c379a6914536
6
+ metadata.gz: 43b9472dd945d592f62b1bff330e567296a5f38c5c873c98ed2b4ff585b65bf2fc5a3ac2a95929ac0a124c83d0f00059dcffb7e5917e28811a1199119ea334ce
7
+ data.tar.gz: d5b0a5d62f75b79d7d1e9884bca8ff253bc6ddfb0224e9bab2a5d8493d5334d5deb9d871a5c9639277893734e53a11e82df289f971ffe9ec82ce65e017ea9ea5
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- treezor_client (1.10.0)
4
+ treezor_client (1.11.0)
5
5
  json (~> 2.1, >= 2.1.0)
6
6
  typhoeus (~> 1.0, >= 1.0.1)
7
7
 
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
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.1
11
11
  =end
12
12
 
13
13
  module TreezorClient
14
- VERSION = '1.10.0'
14
+ VERSION = '1.11.0'
15
15
  end
Binary file
@@ -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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: treezor_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chaker Nakhli