budgea_client 3.0.1 → 4.0.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/budgea_openapi.json +6 -4
- data/docs/Connector.md +1 -0
- data/lib/budgea_client/models/connector.rb +15 -4
- data/lib/budgea_client/version.rb +1 -1
- data/pkg/budgea_client-3.0.1.gem +0 -0
- data/spec/api/administration_api_spec.rb +225 -23
- data/spec/api/authentication_api_spec.rb +81 -11
- data/spec/api/banks_api_spec.rb +379 -236
- data/spec/api/connections_api_spec.rb +76 -39
- data/spec/api/documents_api_spec.rb +124 -114
- data/spec/api/ocr_api_spec.rb +13 -3
- data/spec/api/oidc_api_spec.rb +14 -4
- data/spec/api/pfm_api_spec.rb +61 -51
- data/spec/api/providers_api_spec.rb +260 -238
- data/spec/api/recipients_api_spec.rb +23 -9
- data/spec/api/terms_api_spec.rb +17 -8
- data/spec/api/transfers_api_spec.rb +88 -57
- data/spec/api/users_management_api_spec.rb +25 -15
- data/spec/api/wealth_api_spec.rb +150 -24
- data/spec/api_client_spec.rb +45 -35
- data/spec/configuration_spec.rb +19 -9
- data/spec/models/access_spec.rb +16 -7
- data/spec/models/account_log_spec.rb +21 -12
- data/spec/models/account_spec.rb +59 -20
- data/spec/models/account_type_spec.rb +19 -10
- data/spec/models/alert_spec.rb +19 -10
- data/spec/models/category_spec.rb +21 -12
- data/spec/models/client_spec.rb +25 -28
- data/spec/models/connection_log_spec.rb +38 -17
- data/spec/models/connection_spec.rb +33 -12
- data/spec/models/connector_logo_spec.rb +16 -7
- data/spec/models/connector_spec.rb +18 -0
- data/spec/models/currency_spec.rb +38 -5
- data/spec/models/device_spec.rb +18 -9
- data/spec/models/document_spec.rb +37 -34
- data/spec/models/document_type_spec.rb +14 -5
- data/spec/models/field_spec.rb +32 -11
- data/spec/models/field_value_spec.rb +13 -4
- data/spec/models/file_spec.rb +15 -6
- data/spec/models/group_spec.rb +19 -10
- data/spec/models/hash_table_spec.rb +15 -6
- data/spec/models/inline_response_200_10_spec.rb +19 -4
- data/spec/models/inline_response_200_11_spec.rb +19 -4
- data/spec/models/inline_response_200_12_spec.rb +19 -4
- data/spec/models/inline_response_200_13_spec.rb +19 -4
- data/spec/models/inline_response_200_14_spec.rb +19 -4
- data/spec/models/inline_response_200_15_spec.rb +19 -4
- data/spec/models/inline_response_200_16_spec.rb +19 -4
- data/spec/models/inline_response_200_17_spec.rb +19 -4
- data/spec/models/inline_response_200_18_spec.rb +19 -4
- data/spec/models/inline_response_200_19_spec.rb +13 -4
- data/spec/models/inline_response_200_1_spec.rb +13 -4
- data/spec/models/inline_response_200_20_spec.rb +19 -4
- data/spec/models/inline_response_200_21_spec.rb +19 -4
- data/spec/models/inline_response_200_22_spec.rb +19 -4
- data/spec/models/inline_response_200_23_spec.rb +19 -4
- data/spec/models/inline_response_200_24_spec.rb +19 -4
- data/spec/models/inline_response_200_25_spec.rb +19 -4
- data/spec/models/inline_response_200_26_spec.rb +19 -4
- data/spec/models/inline_response_200_27_spec.rb +19 -4
- data/spec/models/inline_response_200_28_spec.rb +19 -4
- data/spec/models/inline_response_200_29_spec.rb +19 -4
- data/spec/models/inline_response_200_2_spec.rb +14 -5
- data/spec/models/inline_response_200_30_spec.rb +19 -4
- data/spec/models/inline_response_200_31_spec.rb +19 -4
- data/spec/models/inline_response_200_32_spec.rb +19 -4
- data/spec/models/inline_response_200_33_spec.rb +19 -4
- data/spec/models/inline_response_200_34_spec.rb +7 -1
- data/spec/models/inline_response_200_35_spec.rb +7 -1
- data/spec/models/inline_response_200_36_spec.rb +7 -1
- data/spec/models/inline_response_200_37_spec.rb +7 -1
- data/spec/models/inline_response_200_38_spec.rb +7 -1
- data/spec/models/inline_response_200_3_spec.rb +15 -12
- data/spec/models/inline_response_200_4_spec.rb +14 -17
- data/spec/models/inline_response_200_5_spec.rb +33 -6
- data/spec/models/inline_response_200_6_spec.rb +15 -12
- data/spec/models/inline_response_200_7_spec.rb +25 -4
- data/spec/models/inline_response_200_8_spec.rb +19 -4
- data/spec/models/inline_response_200_9_spec.rb +19 -4
- data/spec/models/inline_response_200_spec.rb +18 -3
- data/spec/models/investment_spec.rb +36 -27
- data/spec/models/investment_value_spec.rb +17 -8
- data/spec/models/invite_spec.rb +17 -8
- data/spec/models/locked_user_spec.rb +14 -5
- data/spec/models/oidc_whitelist_spec.rb +13 -4
- data/spec/models/pocket_spec.rb +21 -12
- data/spec/models/profile_spec.rb +23 -14
- data/spec/models/project_spec.rb +20 -11
- data/spec/models/project_type_spec.rb +14 -5
- data/spec/models/recipient_log_spec.rb +6 -0
- data/spec/models/recipient_spec.rb +44 -17
- data/spec/models/security_spec.rb +16 -7
- data/spec/models/subscription_spec.rb +28 -13
- data/spec/models/terms_of_service_spec.rb +16 -7
- data/spec/models/transaction_information_spec.rb +15 -6
- data/spec/models/transaction_spec.rb +71 -32
- data/spec/models/transactions_cluster_spec.rb +20 -11
- data/spec/models/transfer_log_spec.rb +6 -0
- data/spec/models/transfer_spec.rb +33 -18
- data/spec/models/user_alert_spec.rb +25 -16
- data/spec/models/user_spec.rb +18 -9
- data/spec/models/webhook_spec.rb +31 -10
- data/spec/spec_helper.rb +62 -2
- metadata +3 -14
- data/docs/Bank.md +0 -20
- data/docs/BankCategory.md +0 -9
- data/docs/ConnectionContact.md +0 -17
- data/lib/budgea_client/models/bank.rb +0 -335
- data/lib/budgea_client/models/bank_category.rb +0 -206
- data/lib/budgea_client/models/connection_contact.rb +0 -274
- data/spec/models/bank_category_spec.rb +0 -38
- data/spec/models/bank_spec.rb +0 -92
- data/spec/models/connection_contact_spec.rb +0 -86
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
=begin
|
|
2
|
+
#Budgea API Documentation
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 2.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
2
12
|
|
|
3
13
|
require 'spec_helper'
|
|
4
14
|
require 'json'
|
|
@@ -24,64 +34,68 @@ describe 'RecipientsApi' do
|
|
|
24
34
|
|
|
25
35
|
# unit tests for users_id_user_accounts_id_account_recipients_post
|
|
26
36
|
# Add a recipient.
|
|
27
|
-
#
|
|
37
|
+
# if config key transfer.recipient.iban_white_list.enabled is set to 1, recipients whose IBAN are not from countries codes contained in transfer.recipient.iban_white_list.entries will be deleted<br><br>
|
|
28
38
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
29
39
|
# @param id_account
|
|
30
40
|
# @param [Hash] opts the optional parameters
|
|
41
|
+
# @option opts [BOOLEAN] :background if true, do synchronization in background
|
|
31
42
|
# @option opts [String] :label label of recipient
|
|
32
43
|
# @option opts [String] :iban iban of recipient
|
|
33
44
|
# @option opts [String] :expand
|
|
34
45
|
# @return [Recipient]
|
|
35
46
|
describe 'users_id_user_accounts_id_account_recipients_post test' do
|
|
36
|
-
it
|
|
47
|
+
it 'should work' do
|
|
37
48
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
49
|
end
|
|
39
50
|
end
|
|
40
51
|
|
|
41
52
|
# unit tests for users_id_user_connections_id_connection_accounts_id_account_recipients_post
|
|
42
53
|
# Add a recipient.
|
|
43
|
-
#
|
|
54
|
+
# if config key transfer.recipient.iban_white_list.enabled is set to 1, recipients whose IBAN are not from countries codes contained in transfer.recipient.iban_white_list.entries will be deleted<br><br>
|
|
44
55
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
45
56
|
# @param id_connection
|
|
46
57
|
# @param id_account
|
|
47
58
|
# @param [Hash] opts the optional parameters
|
|
59
|
+
# @option opts [BOOLEAN] :background if true, do synchronization in background
|
|
48
60
|
# @option opts [String] :label label of recipient
|
|
49
61
|
# @option opts [String] :iban iban of recipient
|
|
50
62
|
# @option opts [String] :expand
|
|
51
63
|
# @return [Recipient]
|
|
52
64
|
describe 'users_id_user_connections_id_connection_accounts_id_account_recipients_post test' do
|
|
53
|
-
it
|
|
65
|
+
it 'should work' do
|
|
54
66
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
55
67
|
end
|
|
56
68
|
end
|
|
57
69
|
|
|
58
70
|
# unit tests for users_id_user_connections_id_connection_recipients_post
|
|
59
71
|
# Add a recipient.
|
|
60
|
-
#
|
|
72
|
+
# if config key transfer.recipient.iban_white_list.enabled is set to 1, recipients whose IBAN are not from countries codes contained in transfer.recipient.iban_white_list.entries will be deleted<br><br>
|
|
61
73
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
62
74
|
# @param id_connection
|
|
63
75
|
# @param [Hash] opts the optional parameters
|
|
76
|
+
# @option opts [BOOLEAN] :background if true, do synchronization in background
|
|
64
77
|
# @option opts [String] :label label of recipient
|
|
65
78
|
# @option opts [String] :iban iban of recipient
|
|
66
79
|
# @option opts [String] :expand
|
|
67
80
|
# @return [Recipient]
|
|
68
81
|
describe 'users_id_user_connections_id_connection_recipients_post test' do
|
|
69
|
-
it
|
|
82
|
+
it 'should work' do
|
|
70
83
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
71
84
|
end
|
|
72
85
|
end
|
|
73
86
|
|
|
74
87
|
# unit tests for users_id_user_recipients_post
|
|
75
88
|
# Add a recipient.
|
|
76
|
-
#
|
|
89
|
+
# if config key transfer.recipient.iban_white_list.enabled is set to 1, recipients whose IBAN are not from countries codes contained in transfer.recipient.iban_white_list.entries will be deleted<br><br>
|
|
77
90
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
78
91
|
# @param [Hash] opts the optional parameters
|
|
92
|
+
# @option opts [BOOLEAN] :background if true, do synchronization in background
|
|
79
93
|
# @option opts [String] :label label of recipient
|
|
80
94
|
# @option opts [String] :iban iban of recipient
|
|
81
95
|
# @option opts [String] :expand
|
|
82
96
|
# @return [Recipient]
|
|
83
97
|
describe 'users_id_user_recipients_post test' do
|
|
84
|
-
it
|
|
98
|
+
it 'should work' do
|
|
85
99
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
86
100
|
end
|
|
87
101
|
end
|
data/spec/api/terms_api_spec.rb
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
=begin
|
|
2
|
+
#Budgea API Documentation
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 2.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
2
12
|
|
|
3
13
|
require 'spec_helper'
|
|
4
14
|
require 'json'
|
|
@@ -27,9 +37,9 @@ describe 'TermsApi' do
|
|
|
27
37
|
#
|
|
28
38
|
# @param [Hash] opts the optional parameters
|
|
29
39
|
# @option opts [String] :expand
|
|
30
|
-
# @return [
|
|
40
|
+
# @return [InlineResponse20020]
|
|
31
41
|
describe 'terms_get test' do
|
|
32
|
-
it
|
|
42
|
+
it 'should work' do
|
|
33
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
34
44
|
end
|
|
35
45
|
end
|
|
@@ -43,7 +53,7 @@ describe 'TermsApi' do
|
|
|
43
53
|
# @option opts [String] :expand
|
|
44
54
|
# @return [TermsOfService]
|
|
45
55
|
describe 'terms_post test' do
|
|
46
|
-
it
|
|
56
|
+
it 'should work' do
|
|
47
57
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
48
58
|
end
|
|
49
59
|
end
|
|
@@ -54,9 +64,9 @@ describe 'TermsApi' do
|
|
|
54
64
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
55
65
|
# @param [Hash] opts the optional parameters
|
|
56
66
|
# @option opts [String] :expand
|
|
57
|
-
# @return [
|
|
67
|
+
# @return [InlineResponse20020]
|
|
58
68
|
describe 'users_id_user_terms_get test' do
|
|
59
|
-
it
|
|
69
|
+
it 'should work' do
|
|
60
70
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
61
71
|
end
|
|
62
72
|
end
|
|
@@ -66,12 +76,11 @@ describe 'TermsApi' do
|
|
|
66
76
|
#
|
|
67
77
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
68
78
|
# @param [Hash] opts the optional parameters
|
|
69
|
-
# @option opts [Integer] :id_user2 user id (optionnal)
|
|
70
79
|
# @option opts [Integer] :id_terms terms id
|
|
71
80
|
# @option opts [String] :expand
|
|
72
81
|
# @return [TermsOfService]
|
|
73
82
|
describe 'users_id_user_terms_post test' do
|
|
74
|
-
it
|
|
83
|
+
it 'should work' do
|
|
75
84
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
76
85
|
end
|
|
77
86
|
end
|
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
=begin
|
|
2
|
+
#Budgea API Documentation
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 2.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
2
12
|
|
|
3
13
|
require 'spec_helper'
|
|
4
14
|
require 'json'
|
|
@@ -23,15 +33,24 @@ describe 'TransfersApi' do
|
|
|
23
33
|
end
|
|
24
34
|
|
|
25
35
|
# unit tests for users_id_user_accounts_id_account_recipients_get
|
|
26
|
-
# Returns the list of recipients
|
|
36
|
+
# Returns the list of recipients.
|
|
27
37
|
#
|
|
28
38
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
29
39
|
# @param id_account
|
|
30
40
|
# @param [Hash] opts the optional parameters
|
|
31
41
|
# @option opts [String] :expand
|
|
32
|
-
# @
|
|
42
|
+
# @option opts [String] :category
|
|
43
|
+
# @option opts [String] :bank_name
|
|
44
|
+
# @option opts [String] :deleted
|
|
45
|
+
# @option opts [String] :bic
|
|
46
|
+
# @option opts [String] :label
|
|
47
|
+
# @option opts [String] :state
|
|
48
|
+
# @option opts [String] :iban
|
|
49
|
+
# @option opts [String] :error
|
|
50
|
+
# @option opts [String] :id
|
|
51
|
+
# @return [InlineResponse20028]
|
|
33
52
|
describe 'users_id_user_accounts_id_account_recipients_get test' do
|
|
34
|
-
it
|
|
53
|
+
it 'should work' do
|
|
35
54
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
36
55
|
end
|
|
37
56
|
end
|
|
@@ -43,10 +62,11 @@ describe 'TransfersApi' do
|
|
|
43
62
|
# @param id_account
|
|
44
63
|
# @param id_recipient
|
|
45
64
|
# @param [Hash] opts the optional parameters
|
|
65
|
+
# @option opts [BOOLEAN] :background if true, do synchronization in background
|
|
46
66
|
# @option opts [String] :expand
|
|
47
67
|
# @return [Recipient]
|
|
48
68
|
describe 'users_id_user_accounts_id_account_recipients_id_recipient_post test' do
|
|
49
|
-
it
|
|
69
|
+
it 'should work' do
|
|
50
70
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
51
71
|
end
|
|
52
72
|
end
|
|
@@ -60,9 +80,9 @@ describe 'TransfersApi' do
|
|
|
60
80
|
# @param [Hash] opts the optional parameters
|
|
61
81
|
# @option opts [String] :period period to group logs
|
|
62
82
|
# @option opts [String] :expand
|
|
63
|
-
# @return [
|
|
83
|
+
# @return [InlineResponse20029]
|
|
64
84
|
describe 'users_id_user_accounts_id_account_recipients_id_recipient_transfers_get test' do
|
|
65
|
-
it
|
|
85
|
+
it 'should work' do
|
|
66
86
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
67
87
|
end
|
|
68
88
|
end
|
|
@@ -78,7 +98,7 @@ describe 'TransfersApi' do
|
|
|
78
98
|
# @option opts [String] :expand
|
|
79
99
|
# @return [Transfer]
|
|
80
100
|
describe 'users_id_user_accounts_id_account_recipients_id_recipient_transfers_id_transfer_delete test' do
|
|
81
|
-
it
|
|
101
|
+
it 'should work' do
|
|
82
102
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
83
103
|
end
|
|
84
104
|
end
|
|
@@ -92,10 +112,11 @@ describe 'TransfersApi' do
|
|
|
92
112
|
# @param id_transfer
|
|
93
113
|
# @param [Hash] opts the optional parameters
|
|
94
114
|
# @option opts [BOOLEAN] :validated set it to initialize transfer on the bank website.
|
|
115
|
+
# @option opts [Integer] :id_recipient2 set the recipient of the transfer
|
|
95
116
|
# @option opts [String] :expand
|
|
96
117
|
# @return [Transfer]
|
|
97
118
|
describe 'users_id_user_accounts_id_account_recipients_id_recipient_transfers_id_transfer_post test' do
|
|
98
|
-
it
|
|
119
|
+
it 'should work' do
|
|
99
120
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
100
121
|
end
|
|
101
122
|
end
|
|
@@ -113,7 +134,7 @@ describe 'TransfersApi' do
|
|
|
113
134
|
# @option opts [String] :expand
|
|
114
135
|
# @return [Transfer]
|
|
115
136
|
describe 'users_id_user_accounts_id_account_recipients_id_recipient_transfers_post test' do
|
|
116
|
-
it
|
|
137
|
+
it 'should work' do
|
|
117
138
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
118
139
|
end
|
|
119
140
|
end
|
|
@@ -126,9 +147,9 @@ describe 'TransfersApi' do
|
|
|
126
147
|
# @param [Hash] opts the optional parameters
|
|
127
148
|
# @option opts [String] :period period to group logs
|
|
128
149
|
# @option opts [String] :expand
|
|
129
|
-
# @return [
|
|
150
|
+
# @return [InlineResponse20029]
|
|
130
151
|
describe 'users_id_user_accounts_id_account_transfers_get test' do
|
|
131
|
-
it
|
|
152
|
+
it 'should work' do
|
|
132
153
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
133
154
|
end
|
|
134
155
|
end
|
|
@@ -143,7 +164,7 @@ describe 'TransfersApi' do
|
|
|
143
164
|
# @option opts [String] :expand
|
|
144
165
|
# @return [Transfer]
|
|
145
166
|
describe 'users_id_user_accounts_id_account_transfers_id_transfer_delete test' do
|
|
146
|
-
it
|
|
167
|
+
it 'should work' do
|
|
147
168
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
148
169
|
end
|
|
149
170
|
end
|
|
@@ -156,10 +177,11 @@ describe 'TransfersApi' do
|
|
|
156
177
|
# @param id_transfer
|
|
157
178
|
# @param [Hash] opts the optional parameters
|
|
158
179
|
# @option opts [BOOLEAN] :validated set it to initialize transfer on the bank website.
|
|
180
|
+
# @option opts [Integer] :id_recipient set the recipient of the transfer
|
|
159
181
|
# @option opts [String] :expand
|
|
160
182
|
# @return [Transfer]
|
|
161
183
|
describe 'users_id_user_accounts_id_account_transfers_id_transfer_post test' do
|
|
162
|
-
it
|
|
184
|
+
it 'should work' do
|
|
163
185
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
186
|
end
|
|
165
187
|
end
|
|
@@ -176,22 +198,22 @@ describe 'TransfersApi' do
|
|
|
176
198
|
# @option opts [String] :expand
|
|
177
199
|
# @return [Transfer]
|
|
178
200
|
describe 'users_id_user_accounts_id_account_transfers_post test' do
|
|
179
|
-
it
|
|
201
|
+
it 'should work' do
|
|
180
202
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
181
203
|
end
|
|
182
204
|
end
|
|
183
205
|
|
|
184
206
|
# unit tests for users_id_user_connections_id_connection_accounts_id_account_recipients_get
|
|
185
|
-
# Returns the list of recipients
|
|
207
|
+
# Returns the list of recipients.
|
|
186
208
|
#
|
|
187
209
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
188
210
|
# @param id_connection
|
|
189
211
|
# @param id_account
|
|
190
212
|
# @param [Hash] opts the optional parameters
|
|
191
213
|
# @option opts [String] :expand
|
|
192
|
-
# @return [
|
|
214
|
+
# @return [InlineResponse20028]
|
|
193
215
|
describe 'users_id_user_connections_id_connection_accounts_id_account_recipients_get test' do
|
|
194
|
-
it
|
|
216
|
+
it 'should work' do
|
|
195
217
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
196
218
|
end
|
|
197
219
|
end
|
|
@@ -204,10 +226,11 @@ describe 'TransfersApi' do
|
|
|
204
226
|
# @param id_account
|
|
205
227
|
# @param id_recipient
|
|
206
228
|
# @param [Hash] opts the optional parameters
|
|
229
|
+
# @option opts [BOOLEAN] :background if true, do synchronization in background
|
|
207
230
|
# @option opts [String] :expand
|
|
208
231
|
# @return [Recipient]
|
|
209
232
|
describe 'users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_post test' do
|
|
210
|
-
it
|
|
233
|
+
it 'should work' do
|
|
211
234
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
212
235
|
end
|
|
213
236
|
end
|
|
@@ -222,9 +245,9 @@ describe 'TransfersApi' do
|
|
|
222
245
|
# @param [Hash] opts the optional parameters
|
|
223
246
|
# @option opts [String] :period period to group logs
|
|
224
247
|
# @option opts [String] :expand
|
|
225
|
-
# @return [
|
|
248
|
+
# @return [InlineResponse20029]
|
|
226
249
|
describe 'users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_transfers_get test' do
|
|
227
|
-
it
|
|
250
|
+
it 'should work' do
|
|
228
251
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
229
252
|
end
|
|
230
253
|
end
|
|
@@ -241,7 +264,7 @@ describe 'TransfersApi' do
|
|
|
241
264
|
# @option opts [String] :expand
|
|
242
265
|
# @return [Transfer]
|
|
243
266
|
describe 'users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_transfers_id_transfer_delete test' do
|
|
244
|
-
it
|
|
267
|
+
it 'should work' do
|
|
245
268
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
246
269
|
end
|
|
247
270
|
end
|
|
@@ -256,10 +279,11 @@ describe 'TransfersApi' do
|
|
|
256
279
|
# @param id_transfer
|
|
257
280
|
# @param [Hash] opts the optional parameters
|
|
258
281
|
# @option opts [BOOLEAN] :validated set it to initialize transfer on the bank website.
|
|
282
|
+
# @option opts [Integer] :id_recipient2 set the recipient of the transfer
|
|
259
283
|
# @option opts [String] :expand
|
|
260
284
|
# @return [Transfer]
|
|
261
285
|
describe 'users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_transfers_id_transfer_post test' do
|
|
262
|
-
it
|
|
286
|
+
it 'should work' do
|
|
263
287
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
264
288
|
end
|
|
265
289
|
end
|
|
@@ -278,7 +302,7 @@ describe 'TransfersApi' do
|
|
|
278
302
|
# @option opts [String] :expand
|
|
279
303
|
# @return [Transfer]
|
|
280
304
|
describe 'users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_transfers_post test' do
|
|
281
|
-
it
|
|
305
|
+
it 'should work' do
|
|
282
306
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
283
307
|
end
|
|
284
308
|
end
|
|
@@ -292,9 +316,9 @@ describe 'TransfersApi' do
|
|
|
292
316
|
# @param [Hash] opts the optional parameters
|
|
293
317
|
# @option opts [String] :period period to group logs
|
|
294
318
|
# @option opts [String] :expand
|
|
295
|
-
# @return [
|
|
319
|
+
# @return [InlineResponse20029]
|
|
296
320
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transfers_get test' do
|
|
297
|
-
it
|
|
321
|
+
it 'should work' do
|
|
298
322
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
299
323
|
end
|
|
300
324
|
end
|
|
@@ -310,7 +334,7 @@ describe 'TransfersApi' do
|
|
|
310
334
|
# @option opts [String] :expand
|
|
311
335
|
# @return [Transfer]
|
|
312
336
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transfers_id_transfer_delete test' do
|
|
313
|
-
it
|
|
337
|
+
it 'should work' do
|
|
314
338
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
315
339
|
end
|
|
316
340
|
end
|
|
@@ -324,10 +348,11 @@ describe 'TransfersApi' do
|
|
|
324
348
|
# @param id_transfer
|
|
325
349
|
# @param [Hash] opts the optional parameters
|
|
326
350
|
# @option opts [BOOLEAN] :validated set it to initialize transfer on the bank website.
|
|
351
|
+
# @option opts [Integer] :id_recipient set the recipient of the transfer
|
|
327
352
|
# @option opts [String] :expand
|
|
328
353
|
# @return [Transfer]
|
|
329
354
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transfers_id_transfer_post test' do
|
|
330
|
-
it
|
|
355
|
+
it 'should work' do
|
|
331
356
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
332
357
|
end
|
|
333
358
|
end
|
|
@@ -345,21 +370,21 @@ describe 'TransfersApi' do
|
|
|
345
370
|
# @option opts [String] :expand
|
|
346
371
|
# @return [Transfer]
|
|
347
372
|
describe 'users_id_user_connections_id_connection_accounts_id_account_transfers_post test' do
|
|
348
|
-
it
|
|
373
|
+
it 'should work' do
|
|
349
374
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
350
375
|
end
|
|
351
376
|
end
|
|
352
377
|
|
|
353
378
|
# unit tests for users_id_user_connections_id_connection_recipients_get
|
|
354
|
-
# Returns the list of recipients
|
|
379
|
+
# Returns the list of recipients.
|
|
355
380
|
#
|
|
356
381
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
357
382
|
# @param id_connection
|
|
358
383
|
# @param [Hash] opts the optional parameters
|
|
359
384
|
# @option opts [String] :expand
|
|
360
|
-
# @return [
|
|
385
|
+
# @return [InlineResponse20028]
|
|
361
386
|
describe 'users_id_user_connections_id_connection_recipients_get test' do
|
|
362
|
-
it
|
|
387
|
+
it 'should work' do
|
|
363
388
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
364
389
|
end
|
|
365
390
|
end
|
|
@@ -371,10 +396,11 @@ describe 'TransfersApi' do
|
|
|
371
396
|
# @param id_connection
|
|
372
397
|
# @param id_recipient
|
|
373
398
|
# @param [Hash] opts the optional parameters
|
|
399
|
+
# @option opts [BOOLEAN] :background if true, do synchronization in background
|
|
374
400
|
# @option opts [String] :expand
|
|
375
401
|
# @return [Recipient]
|
|
376
402
|
describe 'users_id_user_connections_id_connection_recipients_id_recipient_post test' do
|
|
377
|
-
it
|
|
403
|
+
it 'should work' do
|
|
378
404
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
379
405
|
end
|
|
380
406
|
end
|
|
@@ -388,9 +414,9 @@ describe 'TransfersApi' do
|
|
|
388
414
|
# @param [Hash] opts the optional parameters
|
|
389
415
|
# @option opts [String] :period period to group logs
|
|
390
416
|
# @option opts [String] :expand
|
|
391
|
-
# @return [
|
|
417
|
+
# @return [InlineResponse20029]
|
|
392
418
|
describe 'users_id_user_connections_id_connection_recipients_id_recipient_transfers_get test' do
|
|
393
|
-
it
|
|
419
|
+
it 'should work' do
|
|
394
420
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
395
421
|
end
|
|
396
422
|
end
|
|
@@ -406,7 +432,7 @@ describe 'TransfersApi' do
|
|
|
406
432
|
# @option opts [String] :expand
|
|
407
433
|
# @return [Transfer]
|
|
408
434
|
describe 'users_id_user_connections_id_connection_recipients_id_recipient_transfers_id_transfer_delete test' do
|
|
409
|
-
it
|
|
435
|
+
it 'should work' do
|
|
410
436
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
411
437
|
end
|
|
412
438
|
end
|
|
@@ -420,10 +446,11 @@ describe 'TransfersApi' do
|
|
|
420
446
|
# @param id_transfer
|
|
421
447
|
# @param [Hash] opts the optional parameters
|
|
422
448
|
# @option opts [BOOLEAN] :validated set it to initialize transfer on the bank website.
|
|
449
|
+
# @option opts [Integer] :id_recipient2 set the recipient of the transfer
|
|
423
450
|
# @option opts [String] :expand
|
|
424
451
|
# @return [Transfer]
|
|
425
452
|
describe 'users_id_user_connections_id_connection_recipients_id_recipient_transfers_id_transfer_post test' do
|
|
426
|
-
it
|
|
453
|
+
it 'should work' do
|
|
427
454
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
428
455
|
end
|
|
429
456
|
end
|
|
@@ -441,7 +468,7 @@ describe 'TransfersApi' do
|
|
|
441
468
|
# @option opts [String] :expand
|
|
442
469
|
# @return [Transfer]
|
|
443
470
|
describe 'users_id_user_connections_id_connection_recipients_id_recipient_transfers_post test' do
|
|
444
|
-
it
|
|
471
|
+
it 'should work' do
|
|
445
472
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
446
473
|
end
|
|
447
474
|
end
|
|
@@ -454,9 +481,9 @@ describe 'TransfersApi' do
|
|
|
454
481
|
# @param [Hash] opts the optional parameters
|
|
455
482
|
# @option opts [String] :period period to group logs
|
|
456
483
|
# @option opts [String] :expand
|
|
457
|
-
# @return [
|
|
484
|
+
# @return [InlineResponse20029]
|
|
458
485
|
describe 'users_id_user_connections_id_connection_transfers_get test' do
|
|
459
|
-
it
|
|
486
|
+
it 'should work' do
|
|
460
487
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
461
488
|
end
|
|
462
489
|
end
|
|
@@ -471,7 +498,7 @@ describe 'TransfersApi' do
|
|
|
471
498
|
# @option opts [String] :expand
|
|
472
499
|
# @return [Transfer]
|
|
473
500
|
describe 'users_id_user_connections_id_connection_transfers_id_transfer_delete test' do
|
|
474
|
-
it
|
|
501
|
+
it 'should work' do
|
|
475
502
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
476
503
|
end
|
|
477
504
|
end
|
|
@@ -484,10 +511,11 @@ describe 'TransfersApi' do
|
|
|
484
511
|
# @param id_transfer
|
|
485
512
|
# @param [Hash] opts the optional parameters
|
|
486
513
|
# @option opts [BOOLEAN] :validated set it to initialize transfer on the bank website.
|
|
514
|
+
# @option opts [Integer] :id_recipient set the recipient of the transfer
|
|
487
515
|
# @option opts [String] :expand
|
|
488
516
|
# @return [Transfer]
|
|
489
517
|
describe 'users_id_user_connections_id_connection_transfers_id_transfer_post test' do
|
|
490
|
-
it
|
|
518
|
+
it 'should work' do
|
|
491
519
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
492
520
|
end
|
|
493
521
|
end
|
|
@@ -504,20 +532,20 @@ describe 'TransfersApi' do
|
|
|
504
532
|
# @option opts [String] :expand
|
|
505
533
|
# @return [Transfer]
|
|
506
534
|
describe 'users_id_user_connections_id_connection_transfers_post test' do
|
|
507
|
-
it
|
|
535
|
+
it 'should work' do
|
|
508
536
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
509
537
|
end
|
|
510
538
|
end
|
|
511
539
|
|
|
512
540
|
# unit tests for users_id_user_recipients_get
|
|
513
|
-
# Returns the list of recipients
|
|
541
|
+
# Returns the list of recipients.
|
|
514
542
|
#
|
|
515
543
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
516
544
|
# @param [Hash] opts the optional parameters
|
|
517
545
|
# @option opts [String] :expand
|
|
518
|
-
# @return [
|
|
546
|
+
# @return [InlineResponse20028]
|
|
519
547
|
describe 'users_id_user_recipients_get test' do
|
|
520
|
-
it
|
|
548
|
+
it 'should work' do
|
|
521
549
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
522
550
|
end
|
|
523
551
|
end
|
|
@@ -528,10 +556,11 @@ describe 'TransfersApi' do
|
|
|
528
556
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
529
557
|
# @param id_recipient
|
|
530
558
|
# @param [Hash] opts the optional parameters
|
|
559
|
+
# @option opts [BOOLEAN] :background if true, do synchronization in background
|
|
531
560
|
# @option opts [String] :expand
|
|
532
561
|
# @return [Recipient]
|
|
533
562
|
describe 'users_id_user_recipients_id_recipient_post test' do
|
|
534
|
-
it
|
|
563
|
+
it 'should work' do
|
|
535
564
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
536
565
|
end
|
|
537
566
|
end
|
|
@@ -544,9 +573,9 @@ describe 'TransfersApi' do
|
|
|
544
573
|
# @param [Hash] opts the optional parameters
|
|
545
574
|
# @option opts [String] :period period to group logs
|
|
546
575
|
# @option opts [String] :expand
|
|
547
|
-
# @return [
|
|
576
|
+
# @return [InlineResponse20029]
|
|
548
577
|
describe 'users_id_user_recipients_id_recipient_transfers_get test' do
|
|
549
|
-
it
|
|
578
|
+
it 'should work' do
|
|
550
579
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
551
580
|
end
|
|
552
581
|
end
|
|
@@ -561,7 +590,7 @@ describe 'TransfersApi' do
|
|
|
561
590
|
# @option opts [String] :expand
|
|
562
591
|
# @return [Transfer]
|
|
563
592
|
describe 'users_id_user_recipients_id_recipient_transfers_id_transfer_delete test' do
|
|
564
|
-
it
|
|
593
|
+
it 'should work' do
|
|
565
594
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
566
595
|
end
|
|
567
596
|
end
|
|
@@ -574,10 +603,11 @@ describe 'TransfersApi' do
|
|
|
574
603
|
# @param id_transfer
|
|
575
604
|
# @param [Hash] opts the optional parameters
|
|
576
605
|
# @option opts [BOOLEAN] :validated set it to initialize transfer on the bank website.
|
|
606
|
+
# @option opts [Integer] :id_recipient2 set the recipient of the transfer
|
|
577
607
|
# @option opts [String] :expand
|
|
578
608
|
# @return [Transfer]
|
|
579
609
|
describe 'users_id_user_recipients_id_recipient_transfers_id_transfer_post test' do
|
|
580
|
-
it
|
|
610
|
+
it 'should work' do
|
|
581
611
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
582
612
|
end
|
|
583
613
|
end
|
|
@@ -594,7 +624,7 @@ describe 'TransfersApi' do
|
|
|
594
624
|
# @option opts [String] :expand
|
|
595
625
|
# @return [Transfer]
|
|
596
626
|
describe 'users_id_user_recipients_id_recipient_transfers_post test' do
|
|
597
|
-
it
|
|
627
|
+
it 'should work' do
|
|
598
628
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
599
629
|
end
|
|
600
630
|
end
|
|
@@ -606,9 +636,9 @@ describe 'TransfersApi' do
|
|
|
606
636
|
# @param [Hash] opts the optional parameters
|
|
607
637
|
# @option opts [String] :period period to group logs
|
|
608
638
|
# @option opts [String] :expand
|
|
609
|
-
# @return [
|
|
639
|
+
# @return [InlineResponse20029]
|
|
610
640
|
describe 'users_id_user_transfers_get test' do
|
|
611
|
-
it
|
|
641
|
+
it 'should work' do
|
|
612
642
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
613
643
|
end
|
|
614
644
|
end
|
|
@@ -622,7 +652,7 @@ describe 'TransfersApi' do
|
|
|
622
652
|
# @option opts [String] :expand
|
|
623
653
|
# @return [Transfer]
|
|
624
654
|
describe 'users_id_user_transfers_id_transfer_delete test' do
|
|
625
|
-
it
|
|
655
|
+
it 'should work' do
|
|
626
656
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
627
657
|
end
|
|
628
658
|
end
|
|
@@ -634,10 +664,11 @@ describe 'TransfersApi' do
|
|
|
634
664
|
# @param id_transfer
|
|
635
665
|
# @param [Hash] opts the optional parameters
|
|
636
666
|
# @option opts [BOOLEAN] :validated set it to initialize transfer on the bank website.
|
|
667
|
+
# @option opts [Integer] :id_recipient set the recipient of the transfer
|
|
637
668
|
# @option opts [String] :expand
|
|
638
669
|
# @return [Transfer]
|
|
639
670
|
describe 'users_id_user_transfers_id_transfer_post test' do
|
|
640
|
-
it
|
|
671
|
+
it 'should work' do
|
|
641
672
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
642
673
|
end
|
|
643
674
|
end
|
|
@@ -653,7 +684,7 @@ describe 'TransfersApi' do
|
|
|
653
684
|
# @option opts [String] :expand
|
|
654
685
|
# @return [Transfer]
|
|
655
686
|
describe 'users_id_user_transfers_post test' do
|
|
656
|
-
it
|
|
687
|
+
it 'should work' do
|
|
657
688
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
658
689
|
end
|
|
659
690
|
end
|