budgea_client 1.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 +7 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +89 -0
- data/README.md +619 -0
- data/Rakefile +13 -0
- data/budgea_client.gemspec +35 -0
- data/docs/Access.md +12 -0
- data/docs/Account.md +25 -0
- data/docs/AccountLog.md +15 -0
- data/docs/AccountType.md +15 -0
- data/docs/AdministrationApi.md +944 -0
- data/docs/Alert.md +15 -0
- data/docs/AuthenticationApi.md +398 -0
- data/docs/Bank.md +18 -0
- data/docs/BankCategory.md +9 -0
- data/docs/BanksApi.md +6558 -0
- data/docs/Category.md +17 -0
- data/docs/Client.md +18 -0
- data/docs/Connection.md +16 -0
- data/docs/ConnectionContact.md +17 -0
- data/docs/ConnectionLog.md +21 -0
- data/docs/ConnectionsApi.md +934 -0
- data/docs/ConnectorLogo.md +11 -0
- data/docs/Currency.md +10 -0
- data/docs/Device.md +14 -0
- data/docs/Document.md +29 -0
- data/docs/DocumentType.md +10 -0
- data/docs/DocumentsApi.md +5228 -0
- data/docs/Field.md +15 -0
- data/docs/File.md +11 -0
- data/docs/Group.md +15 -0
- data/docs/HashTable.md +11 -0
- data/docs/InlineResponse200.md +8 -0
- data/docs/InlineResponse2001.md +9 -0
- data/docs/InlineResponse20010.md +8 -0
- data/docs/InlineResponse20011.md +8 -0
- data/docs/InlineResponse20012.md +8 -0
- data/docs/InlineResponse20013.md +8 -0
- data/docs/InlineResponse20014.md +8 -0
- data/docs/InlineResponse20015.md +8 -0
- data/docs/InlineResponse20016.md +8 -0
- data/docs/InlineResponse20017.md +8 -0
- data/docs/InlineResponse20018.md +8 -0
- data/docs/InlineResponse20019.md +8 -0
- data/docs/InlineResponse2002.md +10 -0
- data/docs/InlineResponse20020.md +8 -0
- data/docs/InlineResponse20021.md +8 -0
- data/docs/InlineResponse20022.md +8 -0
- data/docs/InlineResponse20023.md +8 -0
- data/docs/InlineResponse20024.md +8 -0
- data/docs/InlineResponse20025.md +8 -0
- data/docs/InlineResponse20026.md +8 -0
- data/docs/InlineResponse20027.md +8 -0
- data/docs/InlineResponse20028.md +8 -0
- data/docs/InlineResponse20029.md +8 -0
- data/docs/InlineResponse2003.md +10 -0
- data/docs/InlineResponse20030.md +8 -0
- data/docs/InlineResponse20031.md +8 -0
- data/docs/InlineResponse20032.md +8 -0
- data/docs/InlineResponse20033.md +8 -0
- data/docs/InlineResponse2004.md +12 -0
- data/docs/InlineResponse2005.md +9 -0
- data/docs/InlineResponse2006.md +10 -0
- data/docs/InlineResponse2007.md +8 -0
- data/docs/InlineResponse2008.md +8 -0
- data/docs/InlineResponse2009.md +8 -0
- data/docs/Investment.md +32 -0
- data/docs/InvestmentValue.md +13 -0
- data/docs/Invite.md +13 -0
- data/docs/LockedUser.md +10 -0
- data/docs/OCRApi.md +117 -0
- data/docs/OIDCApi.md +167 -0
- data/docs/OidcWhitelist.md +9 -0
- data/docs/PFMApi.md +2204 -0
- data/docs/Pocket.md +17 -0
- data/docs/Profile.md +15 -0
- data/docs/Project.md +16 -0
- data/docs/ProjectType.md +10 -0
- data/docs/ProvidersApi.md +7014 -0
- data/docs/Recipient.md +22 -0
- data/docs/RecipientsApi.md +244 -0
- data/docs/Security.md +12 -0
- data/docs/Subscription.md +18 -0
- data/docs/TermsApi.md +218 -0
- data/docs/TermsOfService.md +12 -0
- data/docs/Transaction.md +33 -0
- data/docs/TransactionInformation.md +11 -0
- data/docs/TransactionsCluster.md +16 -0
- data/docs/Transfer.md +23 -0
- data/docs/TransfersApi.md +2404 -0
- data/docs/User.md +10 -0
- data/docs/UserAlert.md +21 -0
- data/docs/UsersManagementApi.md +608 -0
- data/docs/WealthApi.md +828 -0
- data/docs/Webhook.md +15 -0
- data/git_push.sh +55 -0
- data/lib/budgea_client.rb +118 -0
- data/lib/budgea_client/api/administration_api.rb +1059 -0
- data/lib/budgea_client/api/authentication_api.rb +467 -0
- data/lib/budgea_client/api/banks_api.rb +7837 -0
- data/lib/budgea_client/api/connections_api.rb +1088 -0
- data/lib/budgea_client/api/documents_api.rb +6637 -0
- data/lib/budgea_client/api/ocr_api.rb +141 -0
- data/lib/budgea_client/api/oidc_api.rb +195 -0
- data/lib/budgea_client/api/pfm_api.rb +2630 -0
- data/lib/budgea_client/api/providers_api.rb +8694 -0
- data/lib/budgea_client/api/recipients_api.rb +293 -0
- data/lib/budgea_client/api/terms_api.rb +245 -0
- data/lib/budgea_client/api/transfers_api.rb +2941 -0
- data/lib/budgea_client/api/users_management_api.rb +695 -0
- data/lib/budgea_client/api/wealth_api.rb +994 -0
- data/lib/budgea_client/api_client.rb +378 -0
- data/lib/budgea_client/api_error.rb +28 -0
- data/lib/budgea_client/configuration.rb +192 -0
- data/lib/budgea_client/models/access.rb +224 -0
- data/lib/budgea_client/models/account.rb +383 -0
- data/lib/budgea_client/models/account_log.rb +266 -0
- data/lib/budgea_client/models/account_type.rb +281 -0
- data/lib/budgea_client/models/alert.rb +273 -0
- data/lib/budgea_client/models/bank.rb +308 -0
- data/lib/budgea_client/models/bank_category.rb +201 -0
- data/lib/budgea_client/models/category.rb +299 -0
- data/lib/budgea_client/models/client.rb +305 -0
- data/lib/budgea_client/models/connection.rb +276 -0
- data/lib/budgea_client/models/connection_contact.rb +274 -0
- data/lib/budgea_client/models/connection_log.rb +324 -0
- data/lib/budgea_client/models/connector_logo.rb +223 -0
- data/lib/budgea_client/models/currency.rb +216 -0
- data/lib/budgea_client/models/device.rb +269 -0
- data/lib/budgea_client/models/document.rb +398 -0
- data/lib/budgea_client/models/document_type.rb +213 -0
- data/lib/budgea_client/models/field.rb +273 -0
- data/lib/budgea_client/models/file.rb +225 -0
- data/lib/budgea_client/models/group.rb +246 -0
- data/lib/budgea_client/models/hash_table.rb +227 -0
- data/lib/budgea_client/models/inline_response_200.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_1.rb +199 -0
- data/lib/budgea_client/models/inline_response_200_10.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_11.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_12.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_13.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_14.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_15.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_16.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_17.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_18.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_19.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_2.rb +209 -0
- data/lib/budgea_client/models/inline_response_200_20.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_21.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_22.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_23.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_24.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_25.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_26.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_27.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_28.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_29.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_3.rb +214 -0
- data/lib/budgea_client/models/inline_response_200_30.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_31.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_32.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_33.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_4.rb +239 -0
- data/lib/budgea_client/models/inline_response_200_5.rb +199 -0
- data/lib/budgea_client/models/inline_response_200_6.rb +214 -0
- data/lib/budgea_client/models/inline_response_200_7.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_8.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_9.rb +185 -0
- data/lib/budgea_client/models/investment.rb +449 -0
- data/lib/budgea_client/models/investment_value.rb +249 -0
- data/lib/budgea_client/models/invite.rb +233 -0
- data/lib/budgea_client/models/locked_user.rb +206 -0
- data/lib/budgea_client/models/oidc_whitelist.rb +198 -0
- data/lib/budgea_client/models/pocket.rb +298 -0
- data/lib/budgea_client/models/profile.rb +308 -0
- data/lib/budgea_client/models/project.rb +301 -0
- data/lib/budgea_client/models/project_type.rb +206 -0
- data/lib/budgea_client/models/recipient.rb +343 -0
- data/lib/budgea_client/models/security.rb +229 -0
- data/lib/budgea_client/models/subscription.rb +299 -0
- data/lib/budgea_client/models/terms_of_service.rb +229 -0
- data/lib/budgea_client/models/transaction.rb +507 -0
- data/lib/budgea_client/models/transaction_information.rb +224 -0
- data/lib/budgea_client/models/transactions_cluster.rb +277 -0
- data/lib/budgea_client/models/transfer.rb +354 -0
- data/lib/budgea_client/models/user.rb +244 -0
- data/lib/budgea_client/models/user_alert.rb +333 -0
- data/lib/budgea_client/models/webhook.rb +264 -0
- data/lib/budgea_client/version.rb +5 -0
- data/pkg/budgea_client-1.0.0.gem +0 -0
- data/spec/api/administration_api_spec.rb +271 -0
- data/spec/api/authentication_api_spec.rb +126 -0
- data/spec/api/banks_api_spec.rb +1787 -0
- data/spec/api/connections_api_spec.rb +279 -0
- data/spec/api/documents_api_spec.rb +1557 -0
- data/spec/api/ocr_api_spec.rb +54 -0
- data/spec/api/oidc_api_spec.rb +65 -0
- data/spec/api/pfm_api_spec.rb +613 -0
- data/spec/api/providers_api_spec.rb +2029 -0
- data/spec/api/recipients_api_spec.rb +89 -0
- data/spec/api/terms_api_spec.rb +79 -0
- data/spec/api/transfers_api_spec.rb +661 -0
- data/spec/api/users_management_api_spec.rb +177 -0
- data/spec/api/wealth_api_spec.rb +246 -0
- data/spec/api_client_spec.rb +216 -0
- data/spec/configuration_spec.rb +32 -0
- data/spec/models/access_spec.rb +56 -0
- data/spec/models/account_log_spec.rb +74 -0
- data/spec/models/account_spec.rb +134 -0
- data/spec/models/account_type_spec.rb +74 -0
- data/spec/models/alert_spec.rb +74 -0
- data/spec/models/bank_category_spec.rb +38 -0
- data/spec/models/bank_spec.rb +92 -0
- data/spec/models/category_spec.rb +86 -0
- data/spec/models/client_spec.rb +92 -0
- data/spec/models/connection_contact_spec.rb +86 -0
- data/spec/models/connection_log_spec.rb +110 -0
- data/spec/models/connection_spec.rb +80 -0
- data/spec/models/connector_logo_spec.rb +50 -0
- data/spec/models/currency_spec.rb +44 -0
- data/spec/models/device_spec.rb +68 -0
- data/spec/models/document_spec.rb +158 -0
- data/spec/models/document_type_spec.rb +44 -0
- data/spec/models/field_spec.rb +74 -0
- data/spec/models/file_spec.rb +50 -0
- data/spec/models/group_spec.rb +74 -0
- data/spec/models/hash_table_spec.rb +50 -0
- data/spec/models/inline_response_200_10_spec.rb +32 -0
- data/spec/models/inline_response_200_11_spec.rb +32 -0
- data/spec/models/inline_response_200_12_spec.rb +32 -0
- data/spec/models/inline_response_200_13_spec.rb +32 -0
- data/spec/models/inline_response_200_14_spec.rb +32 -0
- data/spec/models/inline_response_200_15_spec.rb +32 -0
- data/spec/models/inline_response_200_16_spec.rb +32 -0
- data/spec/models/inline_response_200_17_spec.rb +32 -0
- data/spec/models/inline_response_200_18_spec.rb +32 -0
- data/spec/models/inline_response_200_19_spec.rb +32 -0
- data/spec/models/inline_response_200_1_spec.rb +38 -0
- data/spec/models/inline_response_200_20_spec.rb +32 -0
- data/spec/models/inline_response_200_21_spec.rb +32 -0
- data/spec/models/inline_response_200_22_spec.rb +32 -0
- data/spec/models/inline_response_200_23_spec.rb +32 -0
- data/spec/models/inline_response_200_24_spec.rb +32 -0
- data/spec/models/inline_response_200_25_spec.rb +32 -0
- data/spec/models/inline_response_200_26_spec.rb +32 -0
- data/spec/models/inline_response_200_27_spec.rb +32 -0
- data/spec/models/inline_response_200_28_spec.rb +32 -0
- data/spec/models/inline_response_200_29_spec.rb +32 -0
- data/spec/models/inline_response_200_2_spec.rb +44 -0
- data/spec/models/inline_response_200_30_spec.rb +32 -0
- data/spec/models/inline_response_200_31_spec.rb +32 -0
- data/spec/models/inline_response_200_32_spec.rb +32 -0
- data/spec/models/inline_response_200_33_spec.rb +32 -0
- data/spec/models/inline_response_200_3_spec.rb +44 -0
- data/spec/models/inline_response_200_4_spec.rb +56 -0
- data/spec/models/inline_response_200_5_spec.rb +38 -0
- data/spec/models/inline_response_200_6_spec.rb +44 -0
- data/spec/models/inline_response_200_7_spec.rb +32 -0
- data/spec/models/inline_response_200_8_spec.rb +32 -0
- data/spec/models/inline_response_200_9_spec.rb +32 -0
- data/spec/models/inline_response_200_spec.rb +32 -0
- data/spec/models/investment_spec.rb +176 -0
- data/spec/models/investment_value_spec.rb +62 -0
- data/spec/models/invite_spec.rb +62 -0
- data/spec/models/locked_user_spec.rb +44 -0
- data/spec/models/oidc_whitelist_spec.rb +38 -0
- data/spec/models/pocket_spec.rb +86 -0
- data/spec/models/profile_spec.rb +78 -0
- data/spec/models/project_spec.rb +80 -0
- data/spec/models/project_type_spec.rb +44 -0
- data/spec/models/recipient_spec.rb +116 -0
- data/spec/models/security_spec.rb +56 -0
- data/spec/models/subscription_spec.rb +92 -0
- data/spec/models/terms_of_service_spec.rb +56 -0
- data/spec/models/transaction_information_spec.rb +50 -0
- data/spec/models/transaction_spec.rb +182 -0
- data/spec/models/transactions_cluster_spec.rb +80 -0
- data/spec/models/transfer_spec.rb +122 -0
- data/spec/models/user_alert_spec.rb +110 -0
- data/spec/models/user_spec.rb +48 -0
- data/spec/models/webhook_spec.rb +74 -0
- data/spec/spec_helper.rb +51 -0
- metadata +599 -0
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'spec_helper'
|
|
4
|
+
require 'json'
|
|
5
|
+
|
|
6
|
+
# Unit tests for BudgeaClient::RecipientsApi
|
|
7
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
8
|
+
# Please update as you see appropriate
|
|
9
|
+
describe 'RecipientsApi' do
|
|
10
|
+
before do
|
|
11
|
+
# run before each test
|
|
12
|
+
@instance = BudgeaClient::RecipientsApi.new
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
after do
|
|
16
|
+
# run after each test
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
describe 'test an instance of RecipientsApi' do
|
|
20
|
+
it 'should create an instance of RecipientsApi' do
|
|
21
|
+
expect(@instance).to be_instance_of(BudgeaClient::RecipientsApi)
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
# unit tests for users_id_user_accounts_id_account_recipients_post
|
|
26
|
+
# Add a recipient.
|
|
27
|
+
#
|
|
28
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
29
|
+
# @param id_account
|
|
30
|
+
# @param [Hash] opts the optional parameters
|
|
31
|
+
# @option opts [String] :label label of recipient
|
|
32
|
+
# @option opts [String] :iban iban of recipient
|
|
33
|
+
# @option opts [String] :expand
|
|
34
|
+
# @return [Recipient]
|
|
35
|
+
describe 'users_id_user_accounts_id_account_recipients_post test' do
|
|
36
|
+
it "should work" do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
# unit tests for users_id_user_connections_id_connection_accounts_id_account_recipients_post
|
|
42
|
+
# Add a recipient.
|
|
43
|
+
#
|
|
44
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
45
|
+
# @param id_connection
|
|
46
|
+
# @param id_account
|
|
47
|
+
# @param [Hash] opts the optional parameters
|
|
48
|
+
# @option opts [String] :label label of recipient
|
|
49
|
+
# @option opts [String] :iban iban of recipient
|
|
50
|
+
# @option opts [String] :expand
|
|
51
|
+
# @return [Recipient]
|
|
52
|
+
describe 'users_id_user_connections_id_connection_accounts_id_account_recipients_post test' do
|
|
53
|
+
it "should work" do
|
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# unit tests for users_id_user_connections_id_connection_recipients_post
|
|
59
|
+
# Add a recipient.
|
|
60
|
+
#
|
|
61
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
62
|
+
# @param id_connection
|
|
63
|
+
# @param [Hash] opts the optional parameters
|
|
64
|
+
# @option opts [String] :label label of recipient
|
|
65
|
+
# @option opts [String] :iban iban of recipient
|
|
66
|
+
# @option opts [String] :expand
|
|
67
|
+
# @return [Recipient]
|
|
68
|
+
describe 'users_id_user_connections_id_connection_recipients_post test' do
|
|
69
|
+
it "should work" do
|
|
70
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
71
|
+
end
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
# unit tests for users_id_user_recipients_post
|
|
75
|
+
# Add a recipient.
|
|
76
|
+
#
|
|
77
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
78
|
+
# @param [Hash] opts the optional parameters
|
|
79
|
+
# @option opts [String] :label label of recipient
|
|
80
|
+
# @option opts [String] :iban iban of recipient
|
|
81
|
+
# @option opts [String] :expand
|
|
82
|
+
# @return [Recipient]
|
|
83
|
+
describe 'users_id_user_recipients_post test' do
|
|
84
|
+
it "should work" do
|
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
86
|
+
end
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
end
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'spec_helper'
|
|
4
|
+
require 'json'
|
|
5
|
+
|
|
6
|
+
# Unit tests for BudgeaClient::TermsApi
|
|
7
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
8
|
+
# Please update as you see appropriate
|
|
9
|
+
describe 'TermsApi' do
|
|
10
|
+
before do
|
|
11
|
+
# run before each test
|
|
12
|
+
@instance = BudgeaClient::TermsApi.new
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
after do
|
|
16
|
+
# run after each test
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
describe 'test an instance of TermsApi' do
|
|
20
|
+
it 'should create an instance of TermsApi' do
|
|
21
|
+
expect(@instance).to be_instance_of(BudgeaClient::TermsApi)
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
# unit tests for terms_get
|
|
26
|
+
# Return the current terms and the content of the associated file
|
|
27
|
+
#
|
|
28
|
+
# @param [Hash] opts the optional parameters
|
|
29
|
+
# @option opts [String] :expand
|
|
30
|
+
# @return [InlineResponse20016]
|
|
31
|
+
describe 'terms_get test' do
|
|
32
|
+
it "should work" do
|
|
33
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
# unit tests for terms_post
|
|
38
|
+
# Register a version of 'Terms of Service' in database
|
|
39
|
+
#
|
|
40
|
+
# @param [Hash] opts the optional parameters
|
|
41
|
+
# @option opts [String] :version Number of version
|
|
42
|
+
# @option opts [String] :file_content file containing the terms, optional
|
|
43
|
+
# @option opts [String] :expand
|
|
44
|
+
# @return [TermsOfService]
|
|
45
|
+
describe 'terms_post test' do
|
|
46
|
+
it "should work" do
|
|
47
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
# unit tests for users_id_user_terms_get
|
|
52
|
+
# Get active terms object for a specific user, only one terms can be active
|
|
53
|
+
#
|
|
54
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
55
|
+
# @param [Hash] opts the optional parameters
|
|
56
|
+
# @option opts [String] :expand
|
|
57
|
+
# @return [InlineResponse20016]
|
|
58
|
+
describe 'users_id_user_terms_get test' do
|
|
59
|
+
it "should work" do
|
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
# unit tests for users_id_user_terms_post
|
|
65
|
+
# Register user's consent for a specific terms id
|
|
66
|
+
#
|
|
67
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
68
|
+
# @param [Hash] opts the optional parameters
|
|
69
|
+
# @option opts [Integer] :id_user2 user id (optionnal)
|
|
70
|
+
# @option opts [Integer] :id_terms terms id
|
|
71
|
+
# @option opts [String] :expand
|
|
72
|
+
# @return [TermsOfService]
|
|
73
|
+
describe 'users_id_user_terms_post test' do
|
|
74
|
+
it "should work" do
|
|
75
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
76
|
+
end
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
end
|
|
@@ -0,0 +1,661 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'spec_helper'
|
|
4
|
+
require 'json'
|
|
5
|
+
|
|
6
|
+
# Unit tests for BudgeaClient::TransfersApi
|
|
7
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
8
|
+
# Please update as you see appropriate
|
|
9
|
+
describe 'TransfersApi' do
|
|
10
|
+
before do
|
|
11
|
+
# run before each test
|
|
12
|
+
@instance = BudgeaClient::TransfersApi.new
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
after do
|
|
16
|
+
# run after each test
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
describe 'test an instance of TransfersApi' do
|
|
20
|
+
it 'should create an instance of TransfersApi' do
|
|
21
|
+
expect(@instance).to be_instance_of(BudgeaClient::TransfersApi)
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
# unit tests for users_id_user_accounts_id_account_recipients_get
|
|
26
|
+
# Returns the list of recipients
|
|
27
|
+
#
|
|
28
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
29
|
+
# @param id_account
|
|
30
|
+
# @param [Hash] opts the optional parameters
|
|
31
|
+
# @option opts [String] :expand
|
|
32
|
+
# @return [InlineResponse20023]
|
|
33
|
+
describe 'users_id_user_accounts_id_account_recipients_get test' do
|
|
34
|
+
it "should work" do
|
|
35
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
# unit tests for users_id_user_accounts_id_account_recipients_id_recipient_post
|
|
40
|
+
# Continue addition of a recipient.
|
|
41
|
+
#
|
|
42
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
43
|
+
# @param id_account
|
|
44
|
+
# @param id_recipient
|
|
45
|
+
# @param [Hash] opts the optional parameters
|
|
46
|
+
# @option opts [String] :expand
|
|
47
|
+
# @return [Recipient]
|
|
48
|
+
describe 'users_id_user_accounts_id_account_recipients_id_recipient_post test' do
|
|
49
|
+
it "should work" do
|
|
50
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
# unit tests for users_id_user_accounts_id_account_recipients_id_recipient_transfers_get
|
|
55
|
+
# Get transfers
|
|
56
|
+
#
|
|
57
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
58
|
+
# @param id_account
|
|
59
|
+
# @param id_recipient
|
|
60
|
+
# @param [Hash] opts the optional parameters
|
|
61
|
+
# @option opts [String] :period period to group logs
|
|
62
|
+
# @option opts [String] :expand
|
|
63
|
+
# @return [InlineResponse20024]
|
|
64
|
+
describe 'users_id_user_accounts_id_account_recipients_id_recipient_transfers_get test' do
|
|
65
|
+
it "should work" do
|
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
# unit tests for users_id_user_accounts_id_account_recipients_id_recipient_transfers_id_transfer_delete
|
|
71
|
+
# Cancel a transfer.
|
|
72
|
+
# It is possible to cancel only a transfer in state 'created'.<br><br>
|
|
73
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
74
|
+
# @param id_account
|
|
75
|
+
# @param id_recipient
|
|
76
|
+
# @param id_transfer
|
|
77
|
+
# @param [Hash] opts the optional parameters
|
|
78
|
+
# @option opts [String] :expand
|
|
79
|
+
# @return [Transfer]
|
|
80
|
+
describe 'users_id_user_accounts_id_account_recipients_id_recipient_transfers_id_transfer_delete test' do
|
|
81
|
+
it "should work" do
|
|
82
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
83
|
+
end
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
# unit tests for users_id_user_accounts_id_account_recipients_id_recipient_transfers_id_transfer_post
|
|
87
|
+
# Execute or edit a Transfer.
|
|
88
|
+
#
|
|
89
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
90
|
+
# @param id_account
|
|
91
|
+
# @param id_recipient
|
|
92
|
+
# @param id_transfer
|
|
93
|
+
# @param [Hash] opts the optional parameters
|
|
94
|
+
# @option opts [BOOLEAN] :validated set it to initialize transfer on the bank website.
|
|
95
|
+
# @option opts [String] :expand
|
|
96
|
+
# @return [Transfer]
|
|
97
|
+
describe 'users_id_user_accounts_id_account_recipients_id_recipient_transfers_id_transfer_post test' do
|
|
98
|
+
it "should work" do
|
|
99
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
100
|
+
end
|
|
101
|
+
end
|
|
102
|
+
|
|
103
|
+
# unit tests for users_id_user_accounts_id_account_recipients_id_recipient_transfers_post
|
|
104
|
+
# Create a transfer object.
|
|
105
|
+
#
|
|
106
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
107
|
+
# @param id_account
|
|
108
|
+
# @param id_recipient
|
|
109
|
+
# @param amount amount of transfer
|
|
110
|
+
# @param [Hash] opts the optional parameters
|
|
111
|
+
# @option opts [String] :label reason of transfer
|
|
112
|
+
# @option opts [Date] :exec_date excution date of transfer
|
|
113
|
+
# @option opts [String] :expand
|
|
114
|
+
# @return [Transfer]
|
|
115
|
+
describe 'users_id_user_accounts_id_account_recipients_id_recipient_transfers_post test' do
|
|
116
|
+
it "should work" do
|
|
117
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
118
|
+
end
|
|
119
|
+
end
|
|
120
|
+
|
|
121
|
+
# unit tests for users_id_user_accounts_id_account_transfers_get
|
|
122
|
+
# Get transfers
|
|
123
|
+
#
|
|
124
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
125
|
+
# @param id_account
|
|
126
|
+
# @param [Hash] opts the optional parameters
|
|
127
|
+
# @option opts [String] :period period to group logs
|
|
128
|
+
# @option opts [String] :expand
|
|
129
|
+
# @return [InlineResponse20024]
|
|
130
|
+
describe 'users_id_user_accounts_id_account_transfers_get test' do
|
|
131
|
+
it "should work" do
|
|
132
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
133
|
+
end
|
|
134
|
+
end
|
|
135
|
+
|
|
136
|
+
# unit tests for users_id_user_accounts_id_account_transfers_id_transfer_delete
|
|
137
|
+
# Cancel a transfer.
|
|
138
|
+
# It is possible to cancel only a transfer in state 'created'.<br><br>
|
|
139
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
140
|
+
# @param id_account
|
|
141
|
+
# @param id_transfer
|
|
142
|
+
# @param [Hash] opts the optional parameters
|
|
143
|
+
# @option opts [String] :expand
|
|
144
|
+
# @return [Transfer]
|
|
145
|
+
describe 'users_id_user_accounts_id_account_transfers_id_transfer_delete test' do
|
|
146
|
+
it "should work" do
|
|
147
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
148
|
+
end
|
|
149
|
+
end
|
|
150
|
+
|
|
151
|
+
# unit tests for users_id_user_accounts_id_account_transfers_id_transfer_post
|
|
152
|
+
# Execute or edit a Transfer.
|
|
153
|
+
#
|
|
154
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
155
|
+
# @param id_account
|
|
156
|
+
# @param id_transfer
|
|
157
|
+
# @param [Hash] opts the optional parameters
|
|
158
|
+
# @option opts [BOOLEAN] :validated set it to initialize transfer on the bank website.
|
|
159
|
+
# @option opts [String] :expand
|
|
160
|
+
# @return [Transfer]
|
|
161
|
+
describe 'users_id_user_accounts_id_account_transfers_id_transfer_post test' do
|
|
162
|
+
it "should work" do
|
|
163
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
|
+
end
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
# unit tests for users_id_user_accounts_id_account_transfers_post
|
|
168
|
+
# Create a transfer object.
|
|
169
|
+
#
|
|
170
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
171
|
+
# @param id_account
|
|
172
|
+
# @param amount amount of transfer
|
|
173
|
+
# @param [Hash] opts the optional parameters
|
|
174
|
+
# @option opts [String] :label reason of transfer
|
|
175
|
+
# @option opts [Date] :exec_date excution date of transfer
|
|
176
|
+
# @option opts [String] :expand
|
|
177
|
+
# @return [Transfer]
|
|
178
|
+
describe 'users_id_user_accounts_id_account_transfers_post test' do
|
|
179
|
+
it "should work" do
|
|
180
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
181
|
+
end
|
|
182
|
+
end
|
|
183
|
+
|
|
184
|
+
# unit tests for users_id_user_connections_id_connection_accounts_id_account_recipients_get
|
|
185
|
+
# Returns the list of recipients
|
|
186
|
+
#
|
|
187
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
188
|
+
# @param id_connection
|
|
189
|
+
# @param id_account
|
|
190
|
+
# @param [Hash] opts the optional parameters
|
|
191
|
+
# @option opts [String] :expand
|
|
192
|
+
# @return [InlineResponse20023]
|
|
193
|
+
describe 'users_id_user_connections_id_connection_accounts_id_account_recipients_get test' do
|
|
194
|
+
it "should work" do
|
|
195
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
196
|
+
end
|
|
197
|
+
end
|
|
198
|
+
|
|
199
|
+
# unit tests for users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_post
|
|
200
|
+
# Continue addition of a recipient.
|
|
201
|
+
#
|
|
202
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
203
|
+
# @param id_connection
|
|
204
|
+
# @param id_account
|
|
205
|
+
# @param id_recipient
|
|
206
|
+
# @param [Hash] opts the optional parameters
|
|
207
|
+
# @option opts [String] :expand
|
|
208
|
+
# @return [Recipient]
|
|
209
|
+
describe 'users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_post test' do
|
|
210
|
+
it "should work" do
|
|
211
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
212
|
+
end
|
|
213
|
+
end
|
|
214
|
+
|
|
215
|
+
# unit tests for users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_transfers_get
|
|
216
|
+
# Get transfers
|
|
217
|
+
#
|
|
218
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
219
|
+
# @param id_connection
|
|
220
|
+
# @param id_account
|
|
221
|
+
# @param id_recipient
|
|
222
|
+
# @param [Hash] opts the optional parameters
|
|
223
|
+
# @option opts [String] :period period to group logs
|
|
224
|
+
# @option opts [String] :expand
|
|
225
|
+
# @return [InlineResponse20024]
|
|
226
|
+
describe 'users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_transfers_get test' do
|
|
227
|
+
it "should work" do
|
|
228
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
229
|
+
end
|
|
230
|
+
end
|
|
231
|
+
|
|
232
|
+
# unit tests for users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_transfers_id_transfer_delete
|
|
233
|
+
# Cancel a transfer.
|
|
234
|
+
# It is possible to cancel only a transfer in state 'created'.<br><br>
|
|
235
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
236
|
+
# @param id_connection
|
|
237
|
+
# @param id_account
|
|
238
|
+
# @param id_recipient
|
|
239
|
+
# @param id_transfer
|
|
240
|
+
# @param [Hash] opts the optional parameters
|
|
241
|
+
# @option opts [String] :expand
|
|
242
|
+
# @return [Transfer]
|
|
243
|
+
describe 'users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_transfers_id_transfer_delete test' do
|
|
244
|
+
it "should work" do
|
|
245
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
246
|
+
end
|
|
247
|
+
end
|
|
248
|
+
|
|
249
|
+
# unit tests for users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_transfers_id_transfer_post
|
|
250
|
+
# Execute or edit a Transfer.
|
|
251
|
+
#
|
|
252
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
253
|
+
# @param id_connection
|
|
254
|
+
# @param id_account
|
|
255
|
+
# @param id_recipient
|
|
256
|
+
# @param id_transfer
|
|
257
|
+
# @param [Hash] opts the optional parameters
|
|
258
|
+
# @option opts [BOOLEAN] :validated set it to initialize transfer on the bank website.
|
|
259
|
+
# @option opts [String] :expand
|
|
260
|
+
# @return [Transfer]
|
|
261
|
+
describe 'users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_transfers_id_transfer_post test' do
|
|
262
|
+
it "should work" do
|
|
263
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
264
|
+
end
|
|
265
|
+
end
|
|
266
|
+
|
|
267
|
+
# unit tests for users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_transfers_post
|
|
268
|
+
# Create a transfer object.
|
|
269
|
+
#
|
|
270
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
271
|
+
# @param id_connection
|
|
272
|
+
# @param id_account
|
|
273
|
+
# @param id_recipient
|
|
274
|
+
# @param amount amount of transfer
|
|
275
|
+
# @param [Hash] opts the optional parameters
|
|
276
|
+
# @option opts [String] :label reason of transfer
|
|
277
|
+
# @option opts [Date] :exec_date excution date of transfer
|
|
278
|
+
# @option opts [String] :expand
|
|
279
|
+
# @return [Transfer]
|
|
280
|
+
describe 'users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_transfers_post test' do
|
|
281
|
+
it "should work" do
|
|
282
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
283
|
+
end
|
|
284
|
+
end
|
|
285
|
+
|
|
286
|
+
# unit tests for users_id_user_connections_id_connection_accounts_id_account_transfers_get
|
|
287
|
+
# Get transfers
|
|
288
|
+
#
|
|
289
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
290
|
+
# @param id_connection
|
|
291
|
+
# @param id_account
|
|
292
|
+
# @param [Hash] opts the optional parameters
|
|
293
|
+
# @option opts [String] :period period to group logs
|
|
294
|
+
# @option opts [String] :expand
|
|
295
|
+
# @return [InlineResponse20024]
|
|
296
|
+
describe 'users_id_user_connections_id_connection_accounts_id_account_transfers_get test' do
|
|
297
|
+
it "should work" do
|
|
298
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
299
|
+
end
|
|
300
|
+
end
|
|
301
|
+
|
|
302
|
+
# unit tests for users_id_user_connections_id_connection_accounts_id_account_transfers_id_transfer_delete
|
|
303
|
+
# Cancel a transfer.
|
|
304
|
+
# It is possible to cancel only a transfer in state 'created'.<br><br>
|
|
305
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
306
|
+
# @param id_connection
|
|
307
|
+
# @param id_account
|
|
308
|
+
# @param id_transfer
|
|
309
|
+
# @param [Hash] opts the optional parameters
|
|
310
|
+
# @option opts [String] :expand
|
|
311
|
+
# @return [Transfer]
|
|
312
|
+
describe 'users_id_user_connections_id_connection_accounts_id_account_transfers_id_transfer_delete test' do
|
|
313
|
+
it "should work" do
|
|
314
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
315
|
+
end
|
|
316
|
+
end
|
|
317
|
+
|
|
318
|
+
# unit tests for users_id_user_connections_id_connection_accounts_id_account_transfers_id_transfer_post
|
|
319
|
+
# Execute or edit a Transfer.
|
|
320
|
+
#
|
|
321
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
322
|
+
# @param id_connection
|
|
323
|
+
# @param id_account
|
|
324
|
+
# @param id_transfer
|
|
325
|
+
# @param [Hash] opts the optional parameters
|
|
326
|
+
# @option opts [BOOLEAN] :validated set it to initialize transfer on the bank website.
|
|
327
|
+
# @option opts [String] :expand
|
|
328
|
+
# @return [Transfer]
|
|
329
|
+
describe 'users_id_user_connections_id_connection_accounts_id_account_transfers_id_transfer_post test' do
|
|
330
|
+
it "should work" do
|
|
331
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
332
|
+
end
|
|
333
|
+
end
|
|
334
|
+
|
|
335
|
+
# unit tests for users_id_user_connections_id_connection_accounts_id_account_transfers_post
|
|
336
|
+
# Create a transfer object.
|
|
337
|
+
#
|
|
338
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
339
|
+
# @param id_connection
|
|
340
|
+
# @param id_account
|
|
341
|
+
# @param amount amount of transfer
|
|
342
|
+
# @param [Hash] opts the optional parameters
|
|
343
|
+
# @option opts [String] :label reason of transfer
|
|
344
|
+
# @option opts [Date] :exec_date excution date of transfer
|
|
345
|
+
# @option opts [String] :expand
|
|
346
|
+
# @return [Transfer]
|
|
347
|
+
describe 'users_id_user_connections_id_connection_accounts_id_account_transfers_post test' do
|
|
348
|
+
it "should work" do
|
|
349
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
350
|
+
end
|
|
351
|
+
end
|
|
352
|
+
|
|
353
|
+
# unit tests for users_id_user_connections_id_connection_recipients_get
|
|
354
|
+
# Returns the list of recipients
|
|
355
|
+
#
|
|
356
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
357
|
+
# @param id_connection
|
|
358
|
+
# @param [Hash] opts the optional parameters
|
|
359
|
+
# @option opts [String] :expand
|
|
360
|
+
# @return [InlineResponse20023]
|
|
361
|
+
describe 'users_id_user_connections_id_connection_recipients_get test' do
|
|
362
|
+
it "should work" do
|
|
363
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
364
|
+
end
|
|
365
|
+
end
|
|
366
|
+
|
|
367
|
+
# unit tests for users_id_user_connections_id_connection_recipients_id_recipient_post
|
|
368
|
+
# Continue addition of a recipient.
|
|
369
|
+
#
|
|
370
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
371
|
+
# @param id_connection
|
|
372
|
+
# @param id_recipient
|
|
373
|
+
# @param [Hash] opts the optional parameters
|
|
374
|
+
# @option opts [String] :expand
|
|
375
|
+
# @return [Recipient]
|
|
376
|
+
describe 'users_id_user_connections_id_connection_recipients_id_recipient_post test' do
|
|
377
|
+
it "should work" do
|
|
378
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
379
|
+
end
|
|
380
|
+
end
|
|
381
|
+
|
|
382
|
+
# unit tests for users_id_user_connections_id_connection_recipients_id_recipient_transfers_get
|
|
383
|
+
# Get transfers
|
|
384
|
+
#
|
|
385
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
386
|
+
# @param id_connection
|
|
387
|
+
# @param id_recipient
|
|
388
|
+
# @param [Hash] opts the optional parameters
|
|
389
|
+
# @option opts [String] :period period to group logs
|
|
390
|
+
# @option opts [String] :expand
|
|
391
|
+
# @return [InlineResponse20024]
|
|
392
|
+
describe 'users_id_user_connections_id_connection_recipients_id_recipient_transfers_get test' do
|
|
393
|
+
it "should work" do
|
|
394
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
395
|
+
end
|
|
396
|
+
end
|
|
397
|
+
|
|
398
|
+
# unit tests for users_id_user_connections_id_connection_recipients_id_recipient_transfers_id_transfer_delete
|
|
399
|
+
# Cancel a transfer.
|
|
400
|
+
# It is possible to cancel only a transfer in state 'created'.<br><br>
|
|
401
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
402
|
+
# @param id_connection
|
|
403
|
+
# @param id_recipient
|
|
404
|
+
# @param id_transfer
|
|
405
|
+
# @param [Hash] opts the optional parameters
|
|
406
|
+
# @option opts [String] :expand
|
|
407
|
+
# @return [Transfer]
|
|
408
|
+
describe 'users_id_user_connections_id_connection_recipients_id_recipient_transfers_id_transfer_delete test' do
|
|
409
|
+
it "should work" do
|
|
410
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
411
|
+
end
|
|
412
|
+
end
|
|
413
|
+
|
|
414
|
+
# unit tests for users_id_user_connections_id_connection_recipients_id_recipient_transfers_id_transfer_post
|
|
415
|
+
# Execute or edit a Transfer.
|
|
416
|
+
#
|
|
417
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
418
|
+
# @param id_connection
|
|
419
|
+
# @param id_recipient
|
|
420
|
+
# @param id_transfer
|
|
421
|
+
# @param [Hash] opts the optional parameters
|
|
422
|
+
# @option opts [BOOLEAN] :validated set it to initialize transfer on the bank website.
|
|
423
|
+
# @option opts [String] :expand
|
|
424
|
+
# @return [Transfer]
|
|
425
|
+
describe 'users_id_user_connections_id_connection_recipients_id_recipient_transfers_id_transfer_post test' do
|
|
426
|
+
it "should work" do
|
|
427
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
428
|
+
end
|
|
429
|
+
end
|
|
430
|
+
|
|
431
|
+
# unit tests for users_id_user_connections_id_connection_recipients_id_recipient_transfers_post
|
|
432
|
+
# Create a transfer object.
|
|
433
|
+
#
|
|
434
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
435
|
+
# @param id_connection
|
|
436
|
+
# @param id_recipient
|
|
437
|
+
# @param amount amount of transfer
|
|
438
|
+
# @param [Hash] opts the optional parameters
|
|
439
|
+
# @option opts [String] :label reason of transfer
|
|
440
|
+
# @option opts [Date] :exec_date excution date of transfer
|
|
441
|
+
# @option opts [String] :expand
|
|
442
|
+
# @return [Transfer]
|
|
443
|
+
describe 'users_id_user_connections_id_connection_recipients_id_recipient_transfers_post test' do
|
|
444
|
+
it "should work" do
|
|
445
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
446
|
+
end
|
|
447
|
+
end
|
|
448
|
+
|
|
449
|
+
# unit tests for users_id_user_connections_id_connection_transfers_get
|
|
450
|
+
# Get transfers
|
|
451
|
+
#
|
|
452
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
453
|
+
# @param id_connection
|
|
454
|
+
# @param [Hash] opts the optional parameters
|
|
455
|
+
# @option opts [String] :period period to group logs
|
|
456
|
+
# @option opts [String] :expand
|
|
457
|
+
# @return [InlineResponse20024]
|
|
458
|
+
describe 'users_id_user_connections_id_connection_transfers_get test' do
|
|
459
|
+
it "should work" do
|
|
460
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
461
|
+
end
|
|
462
|
+
end
|
|
463
|
+
|
|
464
|
+
# unit tests for users_id_user_connections_id_connection_transfers_id_transfer_delete
|
|
465
|
+
# Cancel a transfer.
|
|
466
|
+
# It is possible to cancel only a transfer in state 'created'.<br><br>
|
|
467
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
468
|
+
# @param id_connection
|
|
469
|
+
# @param id_transfer
|
|
470
|
+
# @param [Hash] opts the optional parameters
|
|
471
|
+
# @option opts [String] :expand
|
|
472
|
+
# @return [Transfer]
|
|
473
|
+
describe 'users_id_user_connections_id_connection_transfers_id_transfer_delete test' do
|
|
474
|
+
it "should work" do
|
|
475
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
476
|
+
end
|
|
477
|
+
end
|
|
478
|
+
|
|
479
|
+
# unit tests for users_id_user_connections_id_connection_transfers_id_transfer_post
|
|
480
|
+
# Execute or edit a Transfer.
|
|
481
|
+
#
|
|
482
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
483
|
+
# @param id_connection
|
|
484
|
+
# @param id_transfer
|
|
485
|
+
# @param [Hash] opts the optional parameters
|
|
486
|
+
# @option opts [BOOLEAN] :validated set it to initialize transfer on the bank website.
|
|
487
|
+
# @option opts [String] :expand
|
|
488
|
+
# @return [Transfer]
|
|
489
|
+
describe 'users_id_user_connections_id_connection_transfers_id_transfer_post test' do
|
|
490
|
+
it "should work" do
|
|
491
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
492
|
+
end
|
|
493
|
+
end
|
|
494
|
+
|
|
495
|
+
# unit tests for users_id_user_connections_id_connection_transfers_post
|
|
496
|
+
# Create a transfer object.
|
|
497
|
+
#
|
|
498
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
499
|
+
# @param id_connection
|
|
500
|
+
# @param amount amount of transfer
|
|
501
|
+
# @param [Hash] opts the optional parameters
|
|
502
|
+
# @option opts [String] :label reason of transfer
|
|
503
|
+
# @option opts [Date] :exec_date excution date of transfer
|
|
504
|
+
# @option opts [String] :expand
|
|
505
|
+
# @return [Transfer]
|
|
506
|
+
describe 'users_id_user_connections_id_connection_transfers_post test' do
|
|
507
|
+
it "should work" do
|
|
508
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
509
|
+
end
|
|
510
|
+
end
|
|
511
|
+
|
|
512
|
+
# unit tests for users_id_user_recipients_get
|
|
513
|
+
# Returns the list of recipients
|
|
514
|
+
#
|
|
515
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
516
|
+
# @param [Hash] opts the optional parameters
|
|
517
|
+
# @option opts [String] :expand
|
|
518
|
+
# @return [InlineResponse20023]
|
|
519
|
+
describe 'users_id_user_recipients_get test' do
|
|
520
|
+
it "should work" do
|
|
521
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
522
|
+
end
|
|
523
|
+
end
|
|
524
|
+
|
|
525
|
+
# unit tests for users_id_user_recipients_id_recipient_post
|
|
526
|
+
# Continue addition of a recipient.
|
|
527
|
+
#
|
|
528
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
529
|
+
# @param id_recipient
|
|
530
|
+
# @param [Hash] opts the optional parameters
|
|
531
|
+
# @option opts [String] :expand
|
|
532
|
+
# @return [Recipient]
|
|
533
|
+
describe 'users_id_user_recipients_id_recipient_post test' do
|
|
534
|
+
it "should work" do
|
|
535
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
536
|
+
end
|
|
537
|
+
end
|
|
538
|
+
|
|
539
|
+
# unit tests for users_id_user_recipients_id_recipient_transfers_get
|
|
540
|
+
# Get transfers
|
|
541
|
+
#
|
|
542
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
543
|
+
# @param id_recipient
|
|
544
|
+
# @param [Hash] opts the optional parameters
|
|
545
|
+
# @option opts [String] :period period to group logs
|
|
546
|
+
# @option opts [String] :expand
|
|
547
|
+
# @return [InlineResponse20024]
|
|
548
|
+
describe 'users_id_user_recipients_id_recipient_transfers_get test' do
|
|
549
|
+
it "should work" do
|
|
550
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
551
|
+
end
|
|
552
|
+
end
|
|
553
|
+
|
|
554
|
+
# unit tests for users_id_user_recipients_id_recipient_transfers_id_transfer_delete
|
|
555
|
+
# Cancel a transfer.
|
|
556
|
+
# It is possible to cancel only a transfer in state 'created'.<br><br>
|
|
557
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
558
|
+
# @param id_recipient
|
|
559
|
+
# @param id_transfer
|
|
560
|
+
# @param [Hash] opts the optional parameters
|
|
561
|
+
# @option opts [String] :expand
|
|
562
|
+
# @return [Transfer]
|
|
563
|
+
describe 'users_id_user_recipients_id_recipient_transfers_id_transfer_delete test' do
|
|
564
|
+
it "should work" do
|
|
565
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
566
|
+
end
|
|
567
|
+
end
|
|
568
|
+
|
|
569
|
+
# unit tests for users_id_user_recipients_id_recipient_transfers_id_transfer_post
|
|
570
|
+
# Execute or edit a Transfer.
|
|
571
|
+
#
|
|
572
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
573
|
+
# @param id_recipient
|
|
574
|
+
# @param id_transfer
|
|
575
|
+
# @param [Hash] opts the optional parameters
|
|
576
|
+
# @option opts [BOOLEAN] :validated set it to initialize transfer on the bank website.
|
|
577
|
+
# @option opts [String] :expand
|
|
578
|
+
# @return [Transfer]
|
|
579
|
+
describe 'users_id_user_recipients_id_recipient_transfers_id_transfer_post test' do
|
|
580
|
+
it "should work" do
|
|
581
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
582
|
+
end
|
|
583
|
+
end
|
|
584
|
+
|
|
585
|
+
# unit tests for users_id_user_recipients_id_recipient_transfers_post
|
|
586
|
+
# Create a transfer object.
|
|
587
|
+
#
|
|
588
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
589
|
+
# @param id_recipient
|
|
590
|
+
# @param amount amount of transfer
|
|
591
|
+
# @param [Hash] opts the optional parameters
|
|
592
|
+
# @option opts [String] :label reason of transfer
|
|
593
|
+
# @option opts [Date] :exec_date excution date of transfer
|
|
594
|
+
# @option opts [String] :expand
|
|
595
|
+
# @return [Transfer]
|
|
596
|
+
describe 'users_id_user_recipients_id_recipient_transfers_post test' do
|
|
597
|
+
it "should work" do
|
|
598
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
599
|
+
end
|
|
600
|
+
end
|
|
601
|
+
|
|
602
|
+
# unit tests for users_id_user_transfers_get
|
|
603
|
+
# Get transfers
|
|
604
|
+
#
|
|
605
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
606
|
+
# @param [Hash] opts the optional parameters
|
|
607
|
+
# @option opts [String] :period period to group logs
|
|
608
|
+
# @option opts [String] :expand
|
|
609
|
+
# @return [InlineResponse20024]
|
|
610
|
+
describe 'users_id_user_transfers_get test' do
|
|
611
|
+
it "should work" do
|
|
612
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
613
|
+
end
|
|
614
|
+
end
|
|
615
|
+
|
|
616
|
+
# unit tests for users_id_user_transfers_id_transfer_delete
|
|
617
|
+
# Cancel a transfer.
|
|
618
|
+
# It is possible to cancel only a transfer in state 'created'.<br><br>
|
|
619
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
620
|
+
# @param id_transfer
|
|
621
|
+
# @param [Hash] opts the optional parameters
|
|
622
|
+
# @option opts [String] :expand
|
|
623
|
+
# @return [Transfer]
|
|
624
|
+
describe 'users_id_user_transfers_id_transfer_delete test' do
|
|
625
|
+
it "should work" do
|
|
626
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
627
|
+
end
|
|
628
|
+
end
|
|
629
|
+
|
|
630
|
+
# unit tests for users_id_user_transfers_id_transfer_post
|
|
631
|
+
# Execute or edit a Transfer.
|
|
632
|
+
#
|
|
633
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
634
|
+
# @param id_transfer
|
|
635
|
+
# @param [Hash] opts the optional parameters
|
|
636
|
+
# @option opts [BOOLEAN] :validated set it to initialize transfer on the bank website.
|
|
637
|
+
# @option opts [String] :expand
|
|
638
|
+
# @return [Transfer]
|
|
639
|
+
describe 'users_id_user_transfers_id_transfer_post test' do
|
|
640
|
+
it "should work" do
|
|
641
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
642
|
+
end
|
|
643
|
+
end
|
|
644
|
+
|
|
645
|
+
# unit tests for users_id_user_transfers_post
|
|
646
|
+
# Create a transfer object.
|
|
647
|
+
#
|
|
648
|
+
# @param id_user Hint: you can use 'me' or 'all'
|
|
649
|
+
# @param amount amount of transfer
|
|
650
|
+
# @param [Hash] opts the optional parameters
|
|
651
|
+
# @option opts [String] :label reason of transfer
|
|
652
|
+
# @option opts [Date] :exec_date excution date of transfer
|
|
653
|
+
# @option opts [String] :expand
|
|
654
|
+
# @return [Transfer]
|
|
655
|
+
describe 'users_id_user_transfers_post test' do
|
|
656
|
+
it "should work" do
|
|
657
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
658
|
+
end
|
|
659
|
+
end
|
|
660
|
+
|
|
661
|
+
end
|