transferzero-sdk 1.9.0 → 1.13.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 +94 -0
- data/README.md +12 -4
- data/docs/AccountValidationRequest.md +2 -0
- data/docs/Document.md +4 -0
- data/docs/PayoutMethod.md +1 -1
- data/docs/PayoutMethodCashProviderEnum.md +16 -0
- data/docs/PayoutMethodCountryEnum.md +16 -0
- data/docs/PayoutMethodDetails.md +4 -0
- data/docs/PayoutMethodDetailsGHSCash.md +21 -0
- data/docs/PayoutMethodDetailsXOFCash.md +25 -0
- data/docs/PayoutMethodDetailsXOFMobile.md +3 -1
- data/docs/ProofOfPayment.md +23 -0
- data/docs/ProofOfPaymentListResponse.md +17 -0
- data/docs/Recipient.md +4 -0
- data/docs/RecipientStateReasonDetails.md +23 -0
- data/docs/RecipientsApi.md +62 -0
- data/docs/Sender.md +3 -1
- data/lib/transferzero-sdk.rb +7 -0
- data/lib/transferzero-sdk/api/recipients_api.rb +54 -0
- data/lib/transferzero-sdk/api_client.rb +1 -1
- data/lib/transferzero-sdk/models/account_validation_request.rb +10 -1
- data/lib/transferzero-sdk/models/document.rb +21 -1
- data/lib/transferzero-sdk/models/payout_method.rb +1 -1
- data/lib/transferzero-sdk/models/payout_method_cash_provider_enum.rb +31 -0
- data/lib/transferzero-sdk/models/payout_method_country_enum.rb +43 -0
- data/lib/transferzero-sdk/models/payout_method_details.rb +21 -1
- data/lib/transferzero-sdk/models/payout_method_details_ghs_cash.rb +236 -0
- data/lib/transferzero-sdk/models/payout_method_details_mad_cash.rb +1 -1
- data/lib/transferzero-sdk/models/payout_method_details_xof_bank.rb +1 -1
- data/lib/transferzero-sdk/models/payout_method_details_xof_cash.rb +254 -0
- data/lib/transferzero-sdk/models/payout_method_details_xof_mobile.rb +14 -5
- data/lib/transferzero-sdk/models/payout_method_identity_card_type_enum.rb +1 -1
- data/lib/transferzero-sdk/models/payout_method_mobile_provider_enum.rb +1 -0
- data/lib/transferzero-sdk/models/proof_of_payment.rb +233 -0
- data/lib/transferzero-sdk/models/proof_of_payment_list_response.rb +204 -0
- data/lib/transferzero-sdk/models/recipient.rb +20 -1
- data/lib/transferzero-sdk/models/recipient_state_reason_details.rb +235 -0
- data/lib/transferzero-sdk/models/sender.rb +12 -2
- data/lib/transferzero-sdk/version.rb +1 -1
- data/spec/models/payout_method_cash_provider_enum_spec.rb +35 -0
- data/spec/models/payout_method_country_enum_spec.rb +35 -0
- data/spec/models/payout_method_details_ghs_cash_spec.rb +53 -0
- data/spec/models/payout_method_details_xof_cash_spec.rb +71 -0
- data/spec/models/proof_of_payment_list_response_spec.rb +41 -0
- data/spec/models/proof_of_payment_spec.rb +59 -0
- data/spec/models/recipient_state_reason_details_spec.rb +59 -0
- metadata +32 -3
@@ -52,9 +52,12 @@ class Sender
|
|
52
52
|
# Identification number of document used
|
53
53
|
attr_accessor :identification_number
|
54
54
|
|
55
|
-
# Document to be identified. The identification type can be one of the following: - `DL`: Driving License - `PP`: International Passport - `ID`: National ID - `OT`: Other
|
55
|
+
# Document to be identified. The identification type can be one of the following: - `DL`: Driving License - `PP`: International Passport - `ID`: National ID - `OT`: Other Please note for Wizall `XOF::Cash` transactions the valid options are: - `ID`: National ID - `PP`: Passport
|
56
56
|
attr_accessor :identification_type
|
57
57
|
|
58
|
+
# Determines language of the served content. Defaults to English
|
59
|
+
attr_accessor :lang
|
60
|
+
|
58
61
|
# Name of sender (used only with a Business sender)
|
59
62
|
attr_accessor :name
|
60
63
|
|
@@ -196,6 +199,7 @@ class Sender
|
|
196
199
|
:'address_description' => :'address_description',
|
197
200
|
:'identification_number' => :'identification_number',
|
198
201
|
:'identification_type' => :'identification_type',
|
202
|
+
:'lang' => :'lang',
|
199
203
|
:'name' => :'name',
|
200
204
|
:'first_name' => :'first_name',
|
201
205
|
:'middle_name' => :'middle_name',
|
@@ -250,6 +254,7 @@ class Sender
|
|
250
254
|
:'address_description' => :'String',
|
251
255
|
:'identification_number' => :'String',
|
252
256
|
:'identification_type' => :'String',
|
257
|
+
:'lang' => :'String',
|
253
258
|
:'name' => :'String',
|
254
259
|
:'first_name' => :'String',
|
255
260
|
:'middle_name' => :'String',
|
@@ -358,6 +363,10 @@ class Sender
|
|
358
363
|
self.identification_type = attributes[:'identification_type']
|
359
364
|
end
|
360
365
|
|
366
|
+
if attributes.key?(:'lang')
|
367
|
+
self.lang = attributes[:'lang']
|
368
|
+
end
|
369
|
+
|
361
370
|
if attributes.key?(:'name')
|
362
371
|
self.name = attributes[:'name']
|
363
372
|
end
|
@@ -633,6 +642,7 @@ class Sender
|
|
633
642
|
address_description == o.address_description &&
|
634
643
|
identification_number == o.identification_number &&
|
635
644
|
identification_type == o.identification_type &&
|
645
|
+
lang == o.lang &&
|
636
646
|
name == o.name &&
|
637
647
|
first_name == o.first_name &&
|
638
648
|
middle_name == o.middle_name &&
|
@@ -678,7 +688,7 @@ class Sender
|
|
678
688
|
# Calculates hash code according to all attributes.
|
679
689
|
# @return [Integer] Hash code
|
680
690
|
def hash
|
681
|
-
[id, type, state, country, street, postal_code, city, phone_country, phone_number, email, ip, address_description, identification_number, identification_type, name, first_name, middle_name, last_name, birth_date, occupation, nationality, legal_entity_type, registration_date, registration_number, nature_of_business, source_of_funds, custom_source_of_funds, core_business_activity, purpose_of_opening_account, office_phone, vat_registration_number, financial_regulator, regulatory_licence_number, contact_person_email, trading_country, trading_address, number_monthly_transactions, amount_monthly_transactions, documents, metadata, errors, onboarding_status, politically_exposed_people, external_id, city_of_birth, country_of_birth, gender, created_at].hash
|
691
|
+
[id, type, state, country, street, postal_code, city, phone_country, phone_number, email, ip, address_description, identification_number, identification_type, lang, name, first_name, middle_name, last_name, birth_date, occupation, nationality, legal_entity_type, registration_date, registration_number, nature_of_business, source_of_funds, custom_source_of_funds, core_business_activity, purpose_of_opening_account, office_phone, vat_registration_number, financial_regulator, regulatory_licence_number, contact_person_email, trading_country, trading_address, number_monthly_transactions, amount_monthly_transactions, documents, metadata, errors, onboarding_status, politically_exposed_people, external_id, city_of_birth, country_of_birth, gender, created_at].hash
|
682
692
|
end
|
683
693
|
|
684
694
|
require 'active_support/core_ext/hash'
|
@@ -0,0 +1,35 @@
|
|
1
|
+
=begin
|
2
|
+
#TransferZero API
|
3
|
+
|
4
|
+
#Reference documentation for the TransferZero API V1
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.0.0-beta3
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for TransferZero::PayoutMethodCashProviderEnum
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PayoutMethodCashProviderEnum' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = TransferZero::PayoutMethodCashProviderEnum.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PayoutMethodCashProviderEnum' do
|
31
|
+
it 'should create an instance of PayoutMethodCashProviderEnum' do
|
32
|
+
expect(@instance).to be_instance_of(TransferZero::PayoutMethodCashProviderEnum)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
=begin
|
2
|
+
#TransferZero API
|
3
|
+
|
4
|
+
#Reference documentation for the TransferZero API V1
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.0.0-beta3
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for TransferZero::PayoutMethodCountryEnum
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PayoutMethodCountryEnum' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = TransferZero::PayoutMethodCountryEnum.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PayoutMethodCountryEnum' do
|
31
|
+
it 'should create an instance of PayoutMethodCountryEnum' do
|
32
|
+
expect(@instance).to be_instance_of(TransferZero::PayoutMethodCountryEnum)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
=begin
|
2
|
+
#TransferZero API
|
3
|
+
|
4
|
+
#Reference documentation for the TransferZero API V1
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.0.0-beta3
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for TransferZero::PayoutMethodDetailsGHSCash
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PayoutMethodDetailsGHSCash' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = TransferZero::PayoutMethodDetailsGHSCash.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PayoutMethodDetailsGHSCash' do
|
31
|
+
it 'should create an instance of PayoutMethodDetailsGHSCash' do
|
32
|
+
expect(@instance).to be_instance_of(TransferZero::PayoutMethodDetailsGHSCash)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "first_name"' 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
|
+
describe 'test attribute "last_name"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "phone_number"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
@@ -0,0 +1,71 @@
|
|
1
|
+
=begin
|
2
|
+
#TransferZero API
|
3
|
+
|
4
|
+
#Reference documentation for the TransferZero API V1
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.0.0-beta3
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for TransferZero::PayoutMethodDetailsXOFCash
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PayoutMethodDetailsXOFCash' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = TransferZero::PayoutMethodDetailsXOFCash.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PayoutMethodDetailsXOFCash' do
|
31
|
+
it 'should create an instance of PayoutMethodDetailsXOFCash' do
|
32
|
+
expect(@instance).to be_instance_of(TransferZero::PayoutMethodDetailsXOFCash)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "first_name"' 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
|
+
describe 'test attribute "last_name"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "identity_card_id"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "identity_card_type"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe 'test attribute "phone_number"' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
describe 'test attribute "cash_provider"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
=begin
|
2
|
+
#TransferZero API
|
3
|
+
|
4
|
+
#Reference documentation for the TransferZero API V1
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.0.0-beta3
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for TransferZero::ProofOfPaymentListResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'ProofOfPaymentListResponse' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = TransferZero::ProofOfPaymentListResponse.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of ProofOfPaymentListResponse' do
|
31
|
+
it 'should create an instance of ProofOfPaymentListResponse' do
|
32
|
+
expect(@instance).to be_instance_of(TransferZero::ProofOfPaymentListResponse)
|
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
|
@@ -0,0 +1,59 @@
|
|
1
|
+
=begin
|
2
|
+
#TransferZero API
|
3
|
+
|
4
|
+
#Reference documentation for the TransferZero API V1
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.0.0-beta3
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for TransferZero::ProofOfPayment
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'ProofOfPayment' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = TransferZero::ProofOfPayment.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of ProofOfPayment' do
|
31
|
+
it 'should create an instance of ProofOfPayment' do
|
32
|
+
expect(@instance).to be_instance_of(TransferZero::ProofOfPayment)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "id"' 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
|
+
describe 'test attribute "file_name"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "thumbnail"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "url"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
=begin
|
2
|
+
#TransferZero API
|
3
|
+
|
4
|
+
#Reference documentation for the TransferZero API V1
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.0.0-beta3
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for TransferZero::RecipientStateReasonDetails
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'RecipientStateReasonDetails' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = TransferZero::RecipientStateReasonDetails.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of RecipientStateReasonDetails' do
|
31
|
+
it 'should create an instance of RecipientStateReasonDetails' do
|
32
|
+
expect(@instance).to be_instance_of(TransferZero::RecipientStateReasonDetails)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "code"' 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
|
+
describe 'test attribute "category"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "messages"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "description"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: transferzero-sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- TransferZero
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-03-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -206,6 +206,7 @@ extensions: []
|
|
206
206
|
extra_rdoc_files: []
|
207
207
|
files:
|
208
208
|
- Gemfile
|
209
|
+
- Gemfile.lock
|
209
210
|
- LICENSE
|
210
211
|
- README.md
|
211
212
|
- Rakefile
|
@@ -261,16 +262,20 @@ files:
|
|
261
262
|
- docs/PaymentMethodsApi.md
|
262
263
|
- docs/PayoutMethod.md
|
263
264
|
- docs/PayoutMethodBankAccountTypeEnum.md
|
265
|
+
- docs/PayoutMethodCashProviderEnum.md
|
266
|
+
- docs/PayoutMethodCountryEnum.md
|
264
267
|
- docs/PayoutMethodDetails.md
|
265
268
|
- docs/PayoutMethodDetailsBTC.md
|
266
269
|
- docs/PayoutMethodDetailsBalance.md
|
267
270
|
- docs/PayoutMethodDetailsGBPBank.md
|
268
271
|
- docs/PayoutMethodDetailsGHSBank.md
|
272
|
+
- docs/PayoutMethodDetailsGHSCash.md
|
269
273
|
- docs/PayoutMethodDetailsIBAN.md
|
270
274
|
- docs/PayoutMethodDetailsMADCash.md
|
271
275
|
- docs/PayoutMethodDetailsMobile.md
|
272
276
|
- docs/PayoutMethodDetailsNGNBank.md
|
273
277
|
- docs/PayoutMethodDetailsXOFBank.md
|
278
|
+
- docs/PayoutMethodDetailsXOFCash.md
|
274
279
|
- docs/PayoutMethodDetailsXOFMobile.md
|
275
280
|
- docs/PayoutMethodDetailsZARBank.md
|
276
281
|
- docs/PayoutMethodGenderEnum.md
|
@@ -282,11 +287,14 @@ files:
|
|
282
287
|
- docs/PayoutMethodWebhook.md
|
283
288
|
- docs/PayoutMethodsApi.md
|
284
289
|
- docs/PoliticallyExposedPerson.md
|
290
|
+
- docs/ProofOfPayment.md
|
291
|
+
- docs/ProofOfPaymentListResponse.md
|
285
292
|
- docs/Recipient.md
|
286
293
|
- docs/RecipientListResponse.md
|
287
294
|
- docs/RecipientRequest.md
|
288
295
|
- docs/RecipientResponse.md
|
289
296
|
- docs/RecipientState.md
|
297
|
+
- docs/RecipientStateReasonDetails.md
|
290
298
|
- docs/RecipientWebhook.md
|
291
299
|
- docs/RecipientsApi.md
|
292
300
|
- docs/Sender.md
|
@@ -385,16 +393,20 @@ files:
|
|
385
393
|
- lib/transferzero-sdk/models/payment_method_opposite.rb
|
386
394
|
- lib/transferzero-sdk/models/payout_method.rb
|
387
395
|
- lib/transferzero-sdk/models/payout_method_bank_account_type_enum.rb
|
396
|
+
- lib/transferzero-sdk/models/payout_method_cash_provider_enum.rb
|
397
|
+
- lib/transferzero-sdk/models/payout_method_country_enum.rb
|
388
398
|
- lib/transferzero-sdk/models/payout_method_details.rb
|
389
399
|
- lib/transferzero-sdk/models/payout_method_details_balance.rb
|
390
400
|
- lib/transferzero-sdk/models/payout_method_details_btc.rb
|
391
401
|
- lib/transferzero-sdk/models/payout_method_details_gbp_bank.rb
|
392
402
|
- lib/transferzero-sdk/models/payout_method_details_ghs_bank.rb
|
403
|
+
- lib/transferzero-sdk/models/payout_method_details_ghs_cash.rb
|
393
404
|
- lib/transferzero-sdk/models/payout_method_details_iban.rb
|
394
405
|
- lib/transferzero-sdk/models/payout_method_details_mad_cash.rb
|
395
406
|
- lib/transferzero-sdk/models/payout_method_details_mobile.rb
|
396
407
|
- lib/transferzero-sdk/models/payout_method_details_ngn_bank.rb
|
397
408
|
- lib/transferzero-sdk/models/payout_method_details_xof_bank.rb
|
409
|
+
- lib/transferzero-sdk/models/payout_method_details_xof_cash.rb
|
398
410
|
- lib/transferzero-sdk/models/payout_method_details_xof_mobile.rb
|
399
411
|
- lib/transferzero-sdk/models/payout_method_details_zar_bank.rb
|
400
412
|
- lib/transferzero-sdk/models/payout_method_gender_enum.rb
|
@@ -405,11 +417,14 @@ files:
|
|
405
417
|
- lib/transferzero-sdk/models/payout_method_response.rb
|
406
418
|
- lib/transferzero-sdk/models/payout_method_webhook.rb
|
407
419
|
- lib/transferzero-sdk/models/politically_exposed_person.rb
|
420
|
+
- lib/transferzero-sdk/models/proof_of_payment.rb
|
421
|
+
- lib/transferzero-sdk/models/proof_of_payment_list_response.rb
|
408
422
|
- lib/transferzero-sdk/models/recipient.rb
|
409
423
|
- lib/transferzero-sdk/models/recipient_list_response.rb
|
410
424
|
- lib/transferzero-sdk/models/recipient_request.rb
|
411
425
|
- lib/transferzero-sdk/models/recipient_response.rb
|
412
426
|
- lib/transferzero-sdk/models/recipient_state.rb
|
427
|
+
- lib/transferzero-sdk/models/recipient_state_reason_details.rb
|
413
428
|
- lib/transferzero-sdk/models/recipient_webhook.rb
|
414
429
|
- lib/transferzero-sdk/models/sender.rb
|
415
430
|
- lib/transferzero-sdk/models/sender_list_response.rb
|
@@ -499,16 +514,20 @@ files:
|
|
499
514
|
- spec/models/payment_method_opposite_spec.rb
|
500
515
|
- spec/models/payment_method_spec.rb
|
501
516
|
- spec/models/payout_method_bank_account_type_enum_spec.rb
|
517
|
+
- spec/models/payout_method_cash_provider_enum_spec.rb
|
518
|
+
- spec/models/payout_method_country_enum_spec.rb
|
502
519
|
- spec/models/payout_method_details_balance_spec.rb
|
503
520
|
- spec/models/payout_method_details_btc_spec.rb
|
504
521
|
- spec/models/payout_method_details_gbp_bank_spec.rb
|
505
522
|
- spec/models/payout_method_details_ghs_bank_spec.rb
|
523
|
+
- spec/models/payout_method_details_ghs_cash_spec.rb
|
506
524
|
- spec/models/payout_method_details_iban_spec.rb
|
507
525
|
- spec/models/payout_method_details_mad_cash_spec.rb
|
508
526
|
- spec/models/payout_method_details_mobile_spec.rb
|
509
527
|
- spec/models/payout_method_details_ngn_bank_spec.rb
|
510
528
|
- spec/models/payout_method_details_spec.rb
|
511
529
|
- spec/models/payout_method_details_xof_bank_spec.rb
|
530
|
+
- spec/models/payout_method_details_xof_cash_spec.rb
|
512
531
|
- spec/models/payout_method_details_xof_mobile_spec.rb
|
513
532
|
- spec/models/payout_method_details_zar_bank_spec.rb
|
514
533
|
- spec/models/payout_method_gender_enum_spec.rb
|
@@ -520,10 +539,13 @@ files:
|
|
520
539
|
- spec/models/payout_method_spec.rb
|
521
540
|
- spec/models/payout_method_webhook_spec.rb
|
522
541
|
- spec/models/politically_exposed_person_spec.rb
|
542
|
+
- spec/models/proof_of_payment_list_response_spec.rb
|
543
|
+
- spec/models/proof_of_payment_spec.rb
|
523
544
|
- spec/models/recipient_list_response_spec.rb
|
524
545
|
- spec/models/recipient_request_spec.rb
|
525
546
|
- spec/models/recipient_response_spec.rb
|
526
547
|
- spec/models/recipient_spec.rb
|
548
|
+
- spec/models/recipient_state_reason_details_spec.rb
|
527
549
|
- spec/models/recipient_state_spec.rb
|
528
550
|
- spec/models/recipient_webhook_spec.rb
|
529
551
|
- spec/models/sender_list_response_spec.rb
|
@@ -577,7 +599,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
577
599
|
- !ruby/object:Gem::Version
|
578
600
|
version: '0'
|
579
601
|
requirements: []
|
580
|
-
rubygems_version: 3.
|
602
|
+
rubygems_version: 3.2.3
|
581
603
|
signing_key:
|
582
604
|
specification_version: 4
|
583
605
|
summary: TransferZero API Ruby Gem
|
@@ -597,6 +619,7 @@ test_files:
|
|
597
619
|
- spec/api/account_debits_api_spec.rb
|
598
620
|
- spec/configuration_spec.rb
|
599
621
|
- spec/models/webhook_definition_response_spec.rb
|
622
|
+
- spec/models/payout_method_details_xof_cash_spec.rb
|
600
623
|
- spec/models/sender_spec.rb
|
601
624
|
- spec/models/currency_opposite_spec.rb
|
602
625
|
- spec/models/payout_method_details_iban_spec.rb
|
@@ -640,6 +663,7 @@ test_files:
|
|
640
663
|
- spec/models/currency_exchange_list_response_spec.rb
|
641
664
|
- spec/models/validation_error_description_spec.rb
|
642
665
|
- spec/models/payin_method_request_spec.rb
|
666
|
+
- spec/models/proof_of_payment_list_response_spec.rb
|
643
667
|
- spec/models/transaction_webhook_spec.rb
|
644
668
|
- spec/models/payout_method_details_xof_bank_spec.rb
|
645
669
|
- spec/models/webhook_log_metadata_spec.rb
|
@@ -669,11 +693,13 @@ test_files:
|
|
669
693
|
- spec/models/recipient_list_response_spec.rb
|
670
694
|
- spec/models/account_response_spec.rb
|
671
695
|
- spec/models/recipient_request_spec.rb
|
696
|
+
- spec/models/recipient_state_reason_details_spec.rb
|
672
697
|
- spec/models/payout_method_webhook_spec.rb
|
673
698
|
- spec/models/sender_response_meta_spec.rb
|
674
699
|
- spec/models/payout_method_response_spec.rb
|
675
700
|
- spec/models/recipient_spec.rb
|
676
701
|
- spec/models/payout_method_identity_card_type_enum_spec.rb
|
702
|
+
- spec/models/proof_of_payment_spec.rb
|
677
703
|
- spec/models/payout_method_details_balance_spec.rb
|
678
704
|
- spec/models/payout_method_details_ngn_bank_spec.rb
|
679
705
|
- spec/models/api_log_response_spec.rb
|
@@ -691,8 +717,11 @@ test_files:
|
|
691
717
|
- spec/models/transaction_request_spec.rb
|
692
718
|
- spec/models/payout_method_details_xof_mobile_spec.rb
|
693
719
|
- spec/models/sender_list_response_spec.rb
|
720
|
+
- spec/models/payout_method_details_ghs_cash_spec.rb
|
721
|
+
- spec/models/payout_method_cash_provider_enum_spec.rb
|
694
722
|
- spec/models/field_description_spec.rb
|
695
723
|
- spec/models/currency_exchange_spec.rb
|
724
|
+
- spec/models/payout_method_country_enum_spec.rb
|
696
725
|
- spec/models/politically_exposed_person_spec.rb
|
697
726
|
- spec/models/payin_method_details_spec.rb
|
698
727
|
- spec/models/account_validation_error_spec.rb
|