transferzero-sdk 1.19.5 → 1.20.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/README.md +4 -4
- data/lib/transferzero-sdk/api_client.rb +1 -1
- data/lib/transferzero-sdk/models/payout_method_details_ngn_bank.rb +1 -1
- data/lib/transferzero-sdk/models/payout_method_details_xof_mobile.rb +1 -1
- data/lib/transferzero-sdk/models/payout_method_mobile_provider_enum.rb +3 -0
- data/lib/transferzero-sdk/version.rb +1 -1
- data/spec/api/documents_api_spec.rb +0 -15
- data/spec/api/payin_methods_api_spec.rb +2 -2
- data/spec/api/payout_methods_api_spec.rb +1 -1
- data/spec/api/recipients_api_spec.rb +13 -1
- data/spec/api/senders_api_spec.rb +1 -1
- data/spec/api/transactions_api_spec.rb +1 -0
- data/spec/models/account_validation_request_spec.rb +14 -2
- data/spec/models/currency_exchange_spec.rb +0 -6
- data/spec/models/currency_opposite_spec.rb +4 -4
- data/spec/models/currency_spec.rb +0 -6
- data/spec/models/document_spec.rb +20 -2
- data/spec/models/payin_method_details_mobile_spec.rb +7 -1
- data/spec/models/payin_method_details_spec.rb +13 -1
- data/spec/models/payin_method_spec.rb +25 -1
- data/spec/models/payout_method_details_kes_bank_spec.rb +6 -0
- data/spec/models/payout_method_details_kes_mobile_spec.rb +6 -0
- data/spec/models/payout_method_details_mobile_spec.rb +6 -0
- data/spec/models/payout_method_details_spec.rb +108 -0
- data/spec/models/payout_method_details_xof_bank_spec.rb +12 -0
- data/spec/models/payout_method_details_xof_cash_spec.rb +3 -9
- data/spec/models/payout_method_details_xof_mobile_spec.rb +12 -0
- data/spec/models/payout_method_details_zar_bank_spec.rb +48 -0
- data/spec/models/recipient_spec.rb +22 -0
- data/spec/models/sender_spec.rb +169 -19
- metadata +9 -42
- data/Gemfile.lock +0 -92
- data/docs/CurrencyExchangeAllOf.md +0 -17
- data/docs/CurrencyOppositeAllOf.md +0 -21
- data/docs/DocumentWebhookAllOf.md +0 -17
- data/docs/PayoutMethodWebhookAllOf.md +0 -17
- data/docs/RecipientWebhookAllOf.md +0 -17
- data/docs/SenderWebhookAllOf.md +0 -17
- data/docs/TransactionWebhookAllOf.md +0 -17
- data/lib/transferzero-sdk/models/currency_exchange_all_of.rb +0 -205
- data/lib/transferzero-sdk/models/currency_opposite_all_of.rb +0 -223
- data/lib/transferzero-sdk/models/document_webhook_all_of.rb +0 -202
- data/lib/transferzero-sdk/models/payout_method_webhook_all_of.rb +0 -202
- data/lib/transferzero-sdk/models/recipient_webhook_all_of.rb +0 -202
- data/lib/transferzero-sdk/models/sender_webhook_all_of.rb +0 -202
- data/lib/transferzero-sdk/models/transaction_webhook_all_of.rb +0 -202
- data/spec/models/currency_exchange_all_of_spec.rb +0 -41
- data/spec/models/currency_opposite_all_of_spec.rb +0 -53
- data/spec/models/document_webhook_all_of_spec.rb +0 -41
- data/spec/models/payout_method_webhook_all_of_spec.rb +0 -41
- data/spec/models/recipient_webhook_all_of_spec.rb +0 -41
- data/spec/models/sender_webhook_all_of_spec.rb +0 -41
- data/spec/models/transaction_webhook_all_of_spec.rb +0 -41
- data/transferzero-sdk-1.19.0.gem +0 -0
- data/transferzero-sdk-1.19.2.gem +0 -0
- data/transferzero-sdk-1.19.3.gem +0 -0
- data/transferzero-sdk-1.19.4.gem +0 -0
@@ -1,41 +0,0 @@
|
|
1
|
-
=begin
|
2
|
-
#TransferZero API
|
3
|
-
|
4
|
-
#Reference documentation for the TransferZero API V1
|
5
|
-
|
6
|
-
The version of the OpenAPI document: 1.0
|
7
|
-
|
8
|
-
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version: 4.1.1
|
10
|
-
|
11
|
-
=end
|
12
|
-
|
13
|
-
require 'spec_helper'
|
14
|
-
require 'json'
|
15
|
-
require 'date'
|
16
|
-
|
17
|
-
# Unit tests for TransferZero::DocumentWebhookAllOf
|
18
|
-
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
-
# Please update as you see appropriate
|
20
|
-
describe 'DocumentWebhookAllOf' do
|
21
|
-
before do
|
22
|
-
# run before each test
|
23
|
-
@instance = TransferZero::DocumentWebhookAllOf.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
29
|
-
|
30
|
-
describe 'test an instance of DocumentWebhookAllOf' do
|
31
|
-
it 'should create an instance of DocumentWebhookAllOf' do
|
32
|
-
expect(@instance).to be_instance_of(TransferZero::DocumentWebhookAllOf)
|
33
|
-
end
|
34
|
-
end
|
35
|
-
describe 'test attribute "object"' 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
|
-
end
|
@@ -1,41 +0,0 @@
|
|
1
|
-
=begin
|
2
|
-
#TransferZero API
|
3
|
-
|
4
|
-
#Reference documentation for the TransferZero API V1
|
5
|
-
|
6
|
-
The version of the OpenAPI document: 1.0
|
7
|
-
|
8
|
-
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version: 4.1.1
|
10
|
-
|
11
|
-
=end
|
12
|
-
|
13
|
-
require 'spec_helper'
|
14
|
-
require 'json'
|
15
|
-
require 'date'
|
16
|
-
|
17
|
-
# Unit tests for TransferZero::PayoutMethodWebhookAllOf
|
18
|
-
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
-
# Please update as you see appropriate
|
20
|
-
describe 'PayoutMethodWebhookAllOf' do
|
21
|
-
before do
|
22
|
-
# run before each test
|
23
|
-
@instance = TransferZero::PayoutMethodWebhookAllOf.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
29
|
-
|
30
|
-
describe 'test an instance of PayoutMethodWebhookAllOf' do
|
31
|
-
it 'should create an instance of PayoutMethodWebhookAllOf' do
|
32
|
-
expect(@instance).to be_instance_of(TransferZero::PayoutMethodWebhookAllOf)
|
33
|
-
end
|
34
|
-
end
|
35
|
-
describe 'test attribute "object"' 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
|
-
end
|
@@ -1,41 +0,0 @@
|
|
1
|
-
=begin
|
2
|
-
#TransferZero API
|
3
|
-
|
4
|
-
#Reference documentation for the TransferZero API V1
|
5
|
-
|
6
|
-
The version of the OpenAPI document: 1.0
|
7
|
-
|
8
|
-
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version: 4.1.1
|
10
|
-
|
11
|
-
=end
|
12
|
-
|
13
|
-
require 'spec_helper'
|
14
|
-
require 'json'
|
15
|
-
require 'date'
|
16
|
-
|
17
|
-
# Unit tests for TransferZero::RecipientWebhookAllOf
|
18
|
-
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
-
# Please update as you see appropriate
|
20
|
-
describe 'RecipientWebhookAllOf' do
|
21
|
-
before do
|
22
|
-
# run before each test
|
23
|
-
@instance = TransferZero::RecipientWebhookAllOf.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
29
|
-
|
30
|
-
describe 'test an instance of RecipientWebhookAllOf' do
|
31
|
-
it 'should create an instance of RecipientWebhookAllOf' do
|
32
|
-
expect(@instance).to be_instance_of(TransferZero::RecipientWebhookAllOf)
|
33
|
-
end
|
34
|
-
end
|
35
|
-
describe 'test attribute "object"' 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
|
-
end
|
@@ -1,41 +0,0 @@
|
|
1
|
-
=begin
|
2
|
-
#TransferZero API
|
3
|
-
|
4
|
-
#Reference documentation for the TransferZero API V1
|
5
|
-
|
6
|
-
The version of the OpenAPI document: 1.0
|
7
|
-
|
8
|
-
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version: 4.1.1
|
10
|
-
|
11
|
-
=end
|
12
|
-
|
13
|
-
require 'spec_helper'
|
14
|
-
require 'json'
|
15
|
-
require 'date'
|
16
|
-
|
17
|
-
# Unit tests for TransferZero::SenderWebhookAllOf
|
18
|
-
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
-
# Please update as you see appropriate
|
20
|
-
describe 'SenderWebhookAllOf' do
|
21
|
-
before do
|
22
|
-
# run before each test
|
23
|
-
@instance = TransferZero::SenderWebhookAllOf.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
29
|
-
|
30
|
-
describe 'test an instance of SenderWebhookAllOf' do
|
31
|
-
it 'should create an instance of SenderWebhookAllOf' do
|
32
|
-
expect(@instance).to be_instance_of(TransferZero::SenderWebhookAllOf)
|
33
|
-
end
|
34
|
-
end
|
35
|
-
describe 'test attribute "object"' 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
|
-
end
|
@@ -1,41 +0,0 @@
|
|
1
|
-
=begin
|
2
|
-
#TransferZero API
|
3
|
-
|
4
|
-
#Reference documentation for the TransferZero API V1
|
5
|
-
|
6
|
-
The version of the OpenAPI document: 1.0
|
7
|
-
|
8
|
-
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version: 4.1.1
|
10
|
-
|
11
|
-
=end
|
12
|
-
|
13
|
-
require 'spec_helper'
|
14
|
-
require 'json'
|
15
|
-
require 'date'
|
16
|
-
|
17
|
-
# Unit tests for TransferZero::TransactionWebhookAllOf
|
18
|
-
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
-
# Please update as you see appropriate
|
20
|
-
describe 'TransactionWebhookAllOf' do
|
21
|
-
before do
|
22
|
-
# run before each test
|
23
|
-
@instance = TransferZero::TransactionWebhookAllOf.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
29
|
-
|
30
|
-
describe 'test an instance of TransactionWebhookAllOf' do
|
31
|
-
it 'should create an instance of TransactionWebhookAllOf' do
|
32
|
-
expect(@instance).to be_instance_of(TransferZero::TransactionWebhookAllOf)
|
33
|
-
end
|
34
|
-
end
|
35
|
-
describe 'test attribute "object"' 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
|
-
end
|
data/transferzero-sdk-1.19.0.gem
DELETED
Binary file
|
data/transferzero-sdk-1.19.2.gem
DELETED
Binary file
|
data/transferzero-sdk-1.19.3.gem
DELETED
Binary file
|
data/transferzero-sdk-1.19.4.gem
DELETED
Binary file
|