budgea_client 1.4.3 → 1.4.4

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: 8ff60e64ab6366a5963a66db5b0c338fc961c437914e8ef26928d20f3daa3bd4
4
- data.tar.gz: adbcb91d9eca00839591f1a98d1d377b6ba3c5a367f3b32651e2ea3764a27e2f
3
+ metadata.gz: 2fbb66a1da92b199d9750defe90ee03c8faec5bcef241e2dfd03112440011571
4
+ data.tar.gz: 106fcafa23194dcb7df822feaf586a895dac290f60e49ce7dcf4aed2da4feb02
5
5
  SHA512:
6
- metadata.gz: f1250ec812f22044564e897f755d008a34a8281795304bf48f71a51d61f81e68300c63034112c8c100ab16698a5c5881c19bf07ed89e017b881593e2c1303a1b
7
- data.tar.gz: d756ec08549527946636d04d8df250967bac8e56e9cbcbc05ed2f459105d89b3aa335c31fe013de152036e2e7de7f08952a49965f99263cb319b513f455d4e14
6
+ metadata.gz: 18a02935dc9047356d0daf6e19454f5b5db3971b9e255e5de5b550928029087d826d9fec98950868e20251b6f9c4894dcc8e101007dc5e2b1c1e48693f8fd2ee
7
+ data.tar.gz: 9567fb0cca889e75f05c1e0ddd7cdc688f4aabc2ceeb145fd589267c777396b263bf417d54c8a823242f155931a9d836d55d87d5a09d2aeb299052fd37658ab0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- budgea_client (1.4.3)
4
+ budgea_client (1.4.4)
5
5
  json (~> 2.1, >= 2.1.0)
6
6
  typhoeus (~> 1.0, >= 1.0.1)
7
7
 
data/budgea_openapi.json CHANGED
@@ -21460,6 +21460,10 @@
21460
21460
  "type": "string",
21461
21461
  "description": "Account IBAN"
21462
21462
  },
21463
+ "bic": {
21464
+ "type": "string",
21465
+ "description": "Account BIC/SWIFT"
21466
+ },
21463
21467
  "currency": {
21464
21468
  "$ref": "#/definitions/Currency",
21465
21469
  "description": "Account currency"
data/docs/Account.md CHANGED
@@ -16,6 +16,7 @@ Name | Type | Description | Notes
16
16
  **deleted** | **DateTime** | This account is not found on the website anymore | [optional]
17
17
  **disabled** | **DateTime** | This account has been deleted by user and will not be synchronized anymore | [optional]
18
18
  **iban** | **String** | Account IBAN | [optional]
19
+ **bic** | **String** | Account BIC/SWIFT | [optional]
19
20
  **currency** | [**Currency**](Currency.md) | Account currency | [optional]
20
21
  **id_type** | **Integer** | ID of the account type | [optional]
21
22
  **bookmarked** | **Integer** | This account has been bookmarked by user |
@@ -44,6 +44,9 @@ module BudgeaClient
44
44
  # Account IBAN
45
45
  attr_accessor :iban
46
46
 
47
+ # Account BIC/SWIFT
48
+ attr_accessor :bic
49
+
47
50
  # Account currency
48
51
  attr_accessor :currency
49
52
 
@@ -76,6 +79,7 @@ module BudgeaClient
76
79
  :'deleted' => :'deleted',
77
80
  :'disabled' => :'disabled',
78
81
  :'iban' => :'iban',
82
+ :'bic' => :'bic',
79
83
  :'currency' => :'currency',
80
84
  :'id_type' => :'id_type',
81
85
  :'bookmarked' => :'bookmarked',
@@ -100,6 +104,7 @@ module BudgeaClient
100
104
  :'deleted' => :'DateTime',
101
105
  :'disabled' => :'DateTime',
102
106
  :'iban' => :'String',
107
+ :'bic' => :'String',
103
108
  :'currency' => :'Currency',
104
109
  :'id_type' => :'Integer',
105
110
  :'bookmarked' => :'Integer',
@@ -172,6 +177,10 @@ module BudgeaClient
172
177
  self.iban = attributes[:'iban']
173
178
  end
174
179
 
180
+ if attributes.has_key?(:'bic')
181
+ self.bic = attributes[:'bic']
182
+ end
183
+
175
184
  if attributes.has_key?(:'currency')
176
185
  self.currency = attributes[:'currency']
177
186
  end
@@ -255,6 +264,7 @@ module BudgeaClient
255
264
  deleted == o.deleted &&
256
265
  disabled == o.disabled &&
257
266
  iban == o.iban &&
267
+ bic == o.bic &&
258
268
  currency == o.currency &&
259
269
  id_type == o.id_type &&
260
270
  bookmarked == o.bookmarked &&
@@ -271,7 +281,7 @@ module BudgeaClient
271
281
  # Calculates hash code according to all attributes.
272
282
  # @return [Fixnum] Hash code
273
283
  def hash
274
- [id, id_connection, id_user, id_parent, number, original_name, balance, coming, display, last_update, deleted, disabled, iban, currency, id_type, bookmarked, name, error].hash
284
+ [id, id_connection, id_user, id_parent, number, original_name, balance, coming, display, last_update, deleted, disabled, iban, bic, currency, id_type, bookmarked, name, error].hash
275
285
  end
276
286
 
277
287
  # Builds the object from hash
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BudgeaClient
4
- VERSION = "1.4.3"
4
+ VERSION = "1.4.4"
5
5
  end
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: budgea_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.3
4
+ version: 1.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chaker Nakhli
@@ -392,6 +392,7 @@ files:
392
392
  - lib/budgea_client/version.rb
393
393
  - pkg/budgea_client-1.3.9.gem
394
394
  - pkg/budgea_client-1.4.2.gem
395
+ - pkg/budgea_client-1.4.3.gem
395
396
  - spec/api/administration_api_spec.rb
396
397
  - spec/api/authentication_api_spec.rb
397
398
  - spec/api/banks_api_spec.rb