transferzero-sdk 1.7.0 → 1.11.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 +93 -0
- data/README.md +11 -4
- data/docs/Currency.md +0 -2
- data/docs/CurrencyExchange.md +0 -2
- data/docs/CurrencyOpposite.md +3 -3
- data/docs/Document.md +4 -0
- data/docs/PayoutMethod.md +1 -1
- data/docs/PayoutMethodCashProviderEnum.md +16 -0
- data/docs/PayoutMethodDetails.md +13 -1
- data/docs/PayoutMethodDetailsMobile.md +3 -1
- data/docs/PayoutMethodDetailsXOFCash.md +23 -0
- data/docs/PayoutMethodDetailsZARBank.md +35 -0
- 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 +18 -8
- data/example/client.rb +55 -18
- data/lib/transferzero-sdk.rb +6 -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/currency.rb +1 -11
- data/lib/transferzero-sdk/models/currency_exchange.rb +1 -11
- data/lib/transferzero-sdk/models/currency_opposite.rb +14 -14
- 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_details.rb +76 -5
- data/lib/transferzero-sdk/models/payout_method_details_mobile.rb +13 -4
- data/lib/transferzero-sdk/models/payout_method_details_xof_bank.rb +1 -1
- data/lib/transferzero-sdk/models/payout_method_details_xof_cash.rb +245 -0
- data/lib/transferzero-sdk/models/payout_method_details_xof_mobile.rb +1 -1
- data/lib/transferzero-sdk/models/payout_method_details_zar_bank.rb +324 -0
- data/lib/transferzero-sdk/models/payout_method_mobile_provider_enum.rb +3 -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 +88 -14
- 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_details_xof_cash_spec.rb +71 -0
- data/spec/models/payout_method_details_zar_bank_spec.rb +89 -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
- data/transferzero-sdk-1.10.0.gem +0 -0
- metadata +28 -2
@@ -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,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,89 @@
|
|
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::PayoutMethodDetailsZARBank
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PayoutMethodDetailsZARBank' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = TransferZero::PayoutMethodDetailsZARBank.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PayoutMethodDetailsZARBank' do
|
31
|
+
it 'should create an instance of PayoutMethodDetailsZARBank' do
|
32
|
+
expect(@instance).to be_instance_of(TransferZero::PayoutMethodDetailsZARBank)
|
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 "street"' 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 "postal_code"' 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 "city"' 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 "bank_code"' 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
|
+
describe 'test attribute "bank_account"' do
|
72
|
+
it 'should work' do
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
describe 'test attribute "phone_number"' do
|
78
|
+
it 'should work' do
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
describe 'test attribute "transfer_reason_code"' 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,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
|
Binary file
|
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.11.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-02-10 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,6 +262,7 @@ files:
|
|
261
262
|
- docs/PaymentMethodsApi.md
|
262
263
|
- docs/PayoutMethod.md
|
263
264
|
- docs/PayoutMethodBankAccountTypeEnum.md
|
265
|
+
- docs/PayoutMethodCashProviderEnum.md
|
264
266
|
- docs/PayoutMethodDetails.md
|
265
267
|
- docs/PayoutMethodDetailsBTC.md
|
266
268
|
- docs/PayoutMethodDetailsBalance.md
|
@@ -271,7 +273,9 @@ files:
|
|
271
273
|
- docs/PayoutMethodDetailsMobile.md
|
272
274
|
- docs/PayoutMethodDetailsNGNBank.md
|
273
275
|
- docs/PayoutMethodDetailsXOFBank.md
|
276
|
+
- docs/PayoutMethodDetailsXOFCash.md
|
274
277
|
- docs/PayoutMethodDetailsXOFMobile.md
|
278
|
+
- docs/PayoutMethodDetailsZARBank.md
|
275
279
|
- docs/PayoutMethodGenderEnum.md
|
276
280
|
- docs/PayoutMethodIdentityCardTypeEnum.md
|
277
281
|
- docs/PayoutMethodListResponse.md
|
@@ -281,11 +285,14 @@ files:
|
|
281
285
|
- docs/PayoutMethodWebhook.md
|
282
286
|
- docs/PayoutMethodsApi.md
|
283
287
|
- docs/PoliticallyExposedPerson.md
|
288
|
+
- docs/ProofOfPayment.md
|
289
|
+
- docs/ProofOfPaymentListResponse.md
|
284
290
|
- docs/Recipient.md
|
285
291
|
- docs/RecipientListResponse.md
|
286
292
|
- docs/RecipientRequest.md
|
287
293
|
- docs/RecipientResponse.md
|
288
294
|
- docs/RecipientState.md
|
295
|
+
- docs/RecipientStateReasonDetails.md
|
289
296
|
- docs/RecipientWebhook.md
|
290
297
|
- docs/RecipientsApi.md
|
291
298
|
- docs/Sender.md
|
@@ -384,6 +391,7 @@ files:
|
|
384
391
|
- lib/transferzero-sdk/models/payment_method_opposite.rb
|
385
392
|
- lib/transferzero-sdk/models/payout_method.rb
|
386
393
|
- lib/transferzero-sdk/models/payout_method_bank_account_type_enum.rb
|
394
|
+
- lib/transferzero-sdk/models/payout_method_cash_provider_enum.rb
|
387
395
|
- lib/transferzero-sdk/models/payout_method_details.rb
|
388
396
|
- lib/transferzero-sdk/models/payout_method_details_balance.rb
|
389
397
|
- lib/transferzero-sdk/models/payout_method_details_btc.rb
|
@@ -394,7 +402,9 @@ files:
|
|
394
402
|
- lib/transferzero-sdk/models/payout_method_details_mobile.rb
|
395
403
|
- lib/transferzero-sdk/models/payout_method_details_ngn_bank.rb
|
396
404
|
- lib/transferzero-sdk/models/payout_method_details_xof_bank.rb
|
405
|
+
- lib/transferzero-sdk/models/payout_method_details_xof_cash.rb
|
397
406
|
- lib/transferzero-sdk/models/payout_method_details_xof_mobile.rb
|
407
|
+
- lib/transferzero-sdk/models/payout_method_details_zar_bank.rb
|
398
408
|
- lib/transferzero-sdk/models/payout_method_gender_enum.rb
|
399
409
|
- lib/transferzero-sdk/models/payout_method_identity_card_type_enum.rb
|
400
410
|
- lib/transferzero-sdk/models/payout_method_list_response.rb
|
@@ -403,11 +413,14 @@ files:
|
|
403
413
|
- lib/transferzero-sdk/models/payout_method_response.rb
|
404
414
|
- lib/transferzero-sdk/models/payout_method_webhook.rb
|
405
415
|
- lib/transferzero-sdk/models/politically_exposed_person.rb
|
416
|
+
- lib/transferzero-sdk/models/proof_of_payment.rb
|
417
|
+
- lib/transferzero-sdk/models/proof_of_payment_list_response.rb
|
406
418
|
- lib/transferzero-sdk/models/recipient.rb
|
407
419
|
- lib/transferzero-sdk/models/recipient_list_response.rb
|
408
420
|
- lib/transferzero-sdk/models/recipient_request.rb
|
409
421
|
- lib/transferzero-sdk/models/recipient_response.rb
|
410
422
|
- lib/transferzero-sdk/models/recipient_state.rb
|
423
|
+
- lib/transferzero-sdk/models/recipient_state_reason_details.rb
|
411
424
|
- lib/transferzero-sdk/models/recipient_webhook.rb
|
412
425
|
- lib/transferzero-sdk/models/sender.rb
|
413
426
|
- lib/transferzero-sdk/models/sender_list_response.rb
|
@@ -497,6 +510,7 @@ files:
|
|
497
510
|
- spec/models/payment_method_opposite_spec.rb
|
498
511
|
- spec/models/payment_method_spec.rb
|
499
512
|
- spec/models/payout_method_bank_account_type_enum_spec.rb
|
513
|
+
- spec/models/payout_method_cash_provider_enum_spec.rb
|
500
514
|
- spec/models/payout_method_details_balance_spec.rb
|
501
515
|
- spec/models/payout_method_details_btc_spec.rb
|
502
516
|
- spec/models/payout_method_details_gbp_bank_spec.rb
|
@@ -507,7 +521,9 @@ files:
|
|
507
521
|
- spec/models/payout_method_details_ngn_bank_spec.rb
|
508
522
|
- spec/models/payout_method_details_spec.rb
|
509
523
|
- spec/models/payout_method_details_xof_bank_spec.rb
|
524
|
+
- spec/models/payout_method_details_xof_cash_spec.rb
|
510
525
|
- spec/models/payout_method_details_xof_mobile_spec.rb
|
526
|
+
- spec/models/payout_method_details_zar_bank_spec.rb
|
511
527
|
- spec/models/payout_method_gender_enum_spec.rb
|
512
528
|
- spec/models/payout_method_identity_card_type_enum_spec.rb
|
513
529
|
- spec/models/payout_method_list_response_spec.rb
|
@@ -517,10 +533,13 @@ files:
|
|
517
533
|
- spec/models/payout_method_spec.rb
|
518
534
|
- spec/models/payout_method_webhook_spec.rb
|
519
535
|
- spec/models/politically_exposed_person_spec.rb
|
536
|
+
- spec/models/proof_of_payment_list_response_spec.rb
|
537
|
+
- spec/models/proof_of_payment_spec.rb
|
520
538
|
- spec/models/recipient_list_response_spec.rb
|
521
539
|
- spec/models/recipient_request_spec.rb
|
522
540
|
- spec/models/recipient_response_spec.rb
|
523
541
|
- spec/models/recipient_spec.rb
|
542
|
+
- spec/models/recipient_state_reason_details_spec.rb
|
524
543
|
- spec/models/recipient_state_spec.rb
|
525
544
|
- spec/models/recipient_webhook_spec.rb
|
526
545
|
- spec/models/sender_list_response_spec.rb
|
@@ -554,6 +573,7 @@ files:
|
|
554
573
|
- spec/models/webhook_log_spec.rb
|
555
574
|
- spec/models/webhook_spec.rb
|
556
575
|
- spec/spec_helper.rb
|
576
|
+
- transferzero-sdk-1.10.0.gem
|
557
577
|
- transferzero-sdk.gemspec
|
558
578
|
homepage: https://github.com/transferzero/transferzero-sdk-ruby
|
559
579
|
licenses:
|
@@ -594,6 +614,7 @@ test_files:
|
|
594
614
|
- spec/api/account_debits_api_spec.rb
|
595
615
|
- spec/configuration_spec.rb
|
596
616
|
- spec/models/webhook_definition_response_spec.rb
|
617
|
+
- spec/models/payout_method_details_xof_cash_spec.rb
|
597
618
|
- spec/models/sender_spec.rb
|
598
619
|
- spec/models/currency_opposite_spec.rb
|
599
620
|
- spec/models/payout_method_details_iban_spec.rb
|
@@ -623,6 +644,7 @@ test_files:
|
|
623
644
|
- spec/models/account_validation_result_spec.rb
|
624
645
|
- spec/models/debit_request_wrapper_spec.rb
|
625
646
|
- spec/models/document_webhook_spec.rb
|
647
|
+
- spec/models/payout_method_details_zar_bank_spec.rb
|
626
648
|
- spec/models/payout_method_gender_enum_spec.rb
|
627
649
|
- spec/models/transaction_list_response_spec.rb
|
628
650
|
- spec/models/payin_method_spec.rb
|
@@ -636,6 +658,7 @@ test_files:
|
|
636
658
|
- spec/models/currency_exchange_list_response_spec.rb
|
637
659
|
- spec/models/validation_error_description_spec.rb
|
638
660
|
- spec/models/payin_method_request_spec.rb
|
661
|
+
- spec/models/proof_of_payment_list_response_spec.rb
|
639
662
|
- spec/models/transaction_webhook_spec.rb
|
640
663
|
- spec/models/payout_method_details_xof_bank_spec.rb
|
641
664
|
- spec/models/webhook_log_metadata_spec.rb
|
@@ -665,11 +688,13 @@ test_files:
|
|
665
688
|
- spec/models/recipient_list_response_spec.rb
|
666
689
|
- spec/models/account_response_spec.rb
|
667
690
|
- spec/models/recipient_request_spec.rb
|
691
|
+
- spec/models/recipient_state_reason_details_spec.rb
|
668
692
|
- spec/models/payout_method_webhook_spec.rb
|
669
693
|
- spec/models/sender_response_meta_spec.rb
|
670
694
|
- spec/models/payout_method_response_spec.rb
|
671
695
|
- spec/models/recipient_spec.rb
|
672
696
|
- spec/models/payout_method_identity_card_type_enum_spec.rb
|
697
|
+
- spec/models/proof_of_payment_spec.rb
|
673
698
|
- spec/models/payout_method_details_balance_spec.rb
|
674
699
|
- spec/models/payout_method_details_ngn_bank_spec.rb
|
675
700
|
- spec/models/api_log_response_spec.rb
|
@@ -687,6 +712,7 @@ test_files:
|
|
687
712
|
- spec/models/transaction_request_spec.rb
|
688
713
|
- spec/models/payout_method_details_xof_mobile_spec.rb
|
689
714
|
- spec/models/sender_list_response_spec.rb
|
715
|
+
- spec/models/payout_method_cash_provider_enum_spec.rb
|
690
716
|
- spec/models/field_description_spec.rb
|
691
717
|
- spec/models/currency_exchange_spec.rb
|
692
718
|
- spec/models/politically_exposed_person_spec.rb
|