budgea_client 4.0.0 → 4.0.1

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: 533acc2e6ed24ba9ab39a30d79f6fa4a6b2538ac1d86938d7c61ee27a91941fd
4
- data.tar.gz: 051c1bb40cef4448b81a338d1dfb792975d7214c9ba52038c0965ff43868cb34
3
+ metadata.gz: c6b9dcb768637d2b12762ba653055b3e04a052999c5e2cd33d892da22bf7c640
4
+ data.tar.gz: 05f4ce08b6518476016321d0a554a60766e3492e2cc4b8f11e28e1c0e85bbcd1
5
5
  SHA512:
6
- metadata.gz: 802bf727b9bb9879370e3fd429832b54b7fc762d0316de41e295db340067bbf85e75e402e28e446ac28bb39cd86a74b1a2fb13db31d43c3371b07866c6b953da
7
- data.tar.gz: 1d65a4ea02073a263d9575855d239d23b8cec66b3cb78667f5e9ebbce1a7fd8673df8f354bb9f497223fc26e0d375433f47caaaa6408ecad1a9a3eccf9123f77
6
+ metadata.gz: f8c2ef322898f0c3d37be9d418827719c4f76c9ffe77859588663898755b6ee6520bedcfad170df172716ef13d032377cce0f73d9ff7db562c0206a67a93f952
7
+ data.tar.gz: 1d0c0e5e3fa1180a52da0249978159070c676737bfe76ea348f592583fd4016bfa602cd79b4c8e40c318b9eb506b3d4f5e64580efddd402ff975f2cb8de4c14c
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- budgea_client (4.0.0)
4
+ budgea_client (4.0.1)
5
5
  json (~> 2.1, >= 2.1.0)
6
6
  typhoeus (~> 1.0, >= 1.0.1)
7
7
 
data/budgea_openapi.json CHANGED
@@ -24061,6 +24061,12 @@
24061
24061
  "type": "string",
24062
24062
  "description": "Name of the account"
24063
24063
  },
24064
+ "recipients": {
24065
+ "type": "array",
24066
+ "items": {
24067
+ "$ref": "#/definitions/Recipient"
24068
+ }
24069
+ },
24064
24070
  "transactions": {
24065
24071
  "type": "array",
24066
24072
  "items": {
@@ -24893,4 +24899,4 @@
24893
24899
  "api_key": []
24894
24900
  }
24895
24901
  ]
24896
- }
24902
+ }
data/docs/Account.md CHANGED
@@ -22,6 +22,7 @@ Name | Type | Description | Notes
22
22
  **id_type** | **Integer** | ID of the account type | [optional]
23
23
  **bookmarked** | **Integer** | This account has been bookmarked by user |
24
24
  **name** | **String** | Name of the account | [optional]
25
+ **recipients** | [**Array<Recipient>**](Recipient.md) | | [optional]
25
26
  **transactions** | [**Array<Transaction>**](Transaction.md) | | [optional]
26
27
  **error** | **String** | If the last update has failed, the error code | [optional]
27
28
  **usage** | **String** | Account usage | [optional]
@@ -71,6 +71,8 @@ module BudgeaClient
71
71
  # Name of the account
72
72
  attr_accessor :name
73
73
 
74
+ attr_accessor :recipients
75
+
74
76
  attr_accessor :transactions
75
77
 
76
78
  # If the last update has failed, the error code
@@ -104,6 +106,7 @@ module BudgeaClient
104
106
  :'id_type' => :'id_type',
105
107
  :'bookmarked' => :'bookmarked',
106
108
  :'name' => :'name',
109
+ :'recipients' => :'recipients',
107
110
  :'transactions' => :'transactions',
108
111
  :'error' => :'error',
109
112
  :'usage' => :'usage',
@@ -133,6 +136,7 @@ module BudgeaClient
133
136
  :'id_type' => :'Integer',
134
137
  :'bookmarked' => :'Integer',
135
138
  :'name' => :'String',
139
+ :'recipients' => :'Array<Recipient>',
136
140
  :'transactions' => :'Array<Transaction>',
137
141
  :'error' => :'String',
138
142
  :'usage' => :'String',
@@ -228,6 +232,12 @@ module BudgeaClient
228
232
  self.name = attributes[:'name']
229
233
  end
230
234
 
235
+ if attributes.has_key?(:'recipients')
236
+ if (value = attributes[:'recipients']).is_a?(Array)
237
+ self.recipients = value
238
+ end
239
+ end
240
+
231
241
  if attributes.has_key?(:'transactions')
232
242
  if (value = attributes[:'transactions']).is_a?(Array)
233
243
  self.transactions = value
@@ -309,6 +319,7 @@ module BudgeaClient
309
319
  id_type == o.id_type &&
310
320
  bookmarked == o.bookmarked &&
311
321
  name == o.name &&
322
+ recipients == o.recipients &&
312
323
  transactions == o.transactions &&
313
324
  error == o.error &&
314
325
  usage == o.usage &&
@@ -324,7 +335,7 @@ module BudgeaClient
324
335
  # Calculates hash code according to all attributes.
325
336
  # @return [Fixnum] Hash code
326
337
  def hash
327
- [id, id_connection, id_user, id_parent, number, webid, original_name, balance, coming, display, last_update, deleted, disabled, iban, bic, currency, id_type, bookmarked, name, transactions, error, usage, ownership].hash
338
+ [id, id_connection, id_user, id_parent, number, webid, original_name, balance, coming, display, last_update, deleted, disabled, iban, bic, currency, id_type, bookmarked, name, recipients, transactions, error, usage, ownership].hash
328
339
  end
329
340
 
330
341
  # Builds the object from hash
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.1
11
11
  =end
12
12
 
13
13
  module BudgeaClient
14
- VERSION = '4.0.0'
14
+ VERSION = '4.0.1'
15
15
  end
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: budgea_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chaker Nakhli
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-18 00:00:00.000000000 Z
11
+ date: 2019-09-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -421,8 +421,10 @@ files:
421
421
  - lib/budgea_client/models/webhook_log.rb
422
422
  - lib/budgea_client/version.rb
423
423
  - original_budgea_openapi.json
424
- - pkg/budgea_client-2.0.0.gem
425
- - pkg/budgea_client-3.0.1.gem
424
+ - pkg/budgea_client-2.0.1.gem
425
+ - pkg/budgea_client-2.0.2.gem
426
+ - pkg/budgea_client-3.0.0.gem
427
+ - pkg/budgea_client-4.0.1.gem
426
428
  - spec/api/administration_api_spec.rb
427
429
  - spec/api/authentication_api_spec.rb
428
430
  - spec/api/banks_api_spec.rb
@@ -551,7 +553,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
551
553
  version: '0'
552
554
  requirements: []
553
555
  rubyforge_project:
554
- rubygems_version: 2.7.8
556
+ rubygems_version: 2.7.10
555
557
  signing_key:
556
558
  specification_version: 4
557
559
  summary: Budgea API Documentation Ruby Gem
Binary file
Binary file