transferzero-sdk 1.26.1 → 1.27.3
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 +5 -4
- data/docs/CurrencyExchangeAllOf.md +17 -0
- data/docs/CurrencyOppositeAllOf.md +21 -0
- data/docs/DocumentWebhookAllOf.md +17 -0
- data/docs/PaymentMethodOppositeAllOf.md +17 -0
- data/docs/PayoutMethod.md +1 -1
- data/docs/PayoutMethodDetails.md +1 -1
- data/docs/PayoutMethodDetailsUGXBank.md +33 -0
- data/docs/PayoutMethodWebhookAllOf.md +17 -0
- data/docs/RecipientWebhookAllOf.md +17 -0
- data/docs/SenderWebhookAllOf.md +17 -0
- data/docs/TransactionWebhookAllOf.md +17 -0
- data/lib/transferzero-sdk/api_client.rb +1 -1
- data/lib/transferzero-sdk/models/currency_exchange_all_of.rb +205 -0
- data/lib/transferzero-sdk/models/currency_opposite_all_of.rb +223 -0
- data/lib/transferzero-sdk/models/document_webhook_all_of.rb +202 -0
- data/lib/transferzero-sdk/models/payment_method_opposite_all_of.rb +205 -0
- data/lib/transferzero-sdk/models/payout_method.rb +1 -1
- data/lib/transferzero-sdk/models/payout_method_bank_account_type_enum.rb +2 -0
- data/lib/transferzero-sdk/models/payout_method_details.rb +2 -1
- data/lib/transferzero-sdk/models/payout_method_details_ugx_bank.rb +320 -0
- data/lib/transferzero-sdk/models/payout_method_webhook_all_of.rb +202 -0
- data/lib/transferzero-sdk/models/recipient_webhook_all_of.rb +202 -0
- data/lib/transferzero-sdk/models/sender_webhook_all_of.rb +202 -0
- data/lib/transferzero-sdk/models/transaction_webhook_all_of.rb +202 -0
- data/lib/transferzero-sdk/version.rb +1 -1
- data/lib/transferzero-sdk.rb +1 -0
- data/spec/models/currency_exchange_all_of_spec.rb +41 -0
- data/spec/models/currency_opposite_all_of_spec.rb +53 -0
- data/spec/models/document_webhook_all_of_spec.rb +41 -0
- data/spec/models/payment_method_opposite_all_of_spec.rb +41 -0
- data/spec/models/payout_method_details_ugx_bank_spec.rb +89 -0
- data/spec/models/payout_method_webhook_all_of_spec.rb +41 -0
- data/spec/models/recipient_webhook_all_of_spec.rb +41 -0
- data/spec/models/sender_webhook_all_of_spec.rb +41 -0
- data/spec/models/transaction_webhook_all_of_spec.rb +41 -0
- data/transferzero-sdk-1.26.1.gem +0 -0
- metadata +40 -4
- data/Gemfile.lock +0 -88
@@ -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::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
|
@@ -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::PaymentMethodOppositeAllOf
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PaymentMethodOppositeAllOf' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = TransferZero::PaymentMethodOppositeAllOf.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PaymentMethodOppositeAllOf' do
|
31
|
+
it 'should create an instance of PaymentMethodOppositeAllOf' do
|
32
|
+
expect(@instance).to be_instance_of(TransferZero::PaymentMethodOppositeAllOf)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "opposites"' 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,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::PayoutMethodDetailsUGXBank
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PayoutMethodDetailsUGXBank' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = TransferZero::PayoutMethodDetailsUGXBank.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PayoutMethodDetailsUGXBank' do
|
31
|
+
it 'should create an instance of PayoutMethodDetailsUGXBank' do
|
32
|
+
expect(@instance).to be_instance_of(TransferZero::PayoutMethodDetailsUGXBank)
|
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 "city"' 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 "postal_code"' 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 "identity_card_id"' 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 "branch_code"' 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"' 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::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
|
@@ -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::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
|
@@ -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::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
|
@@ -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::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
|
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.27.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- TransferZero
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-04-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -92,7 +92,6 @@ extensions: []
|
|
92
92
|
extra_rdoc_files: []
|
93
93
|
files:
|
94
94
|
- Gemfile
|
95
|
-
- Gemfile.lock
|
96
95
|
- LICENSE
|
97
96
|
- README.md
|
98
97
|
- Rakefile
|
@@ -113,10 +112,12 @@ files:
|
|
113
112
|
- docs/ApiLogResponse.md
|
114
113
|
- docs/Currency.md
|
115
114
|
- docs/CurrencyExchange.md
|
115
|
+
- docs/CurrencyExchangeAllOf.md
|
116
116
|
- docs/CurrencyExchangeListResponse.md
|
117
117
|
- docs/CurrencyInfoApi.md
|
118
118
|
- docs/CurrencyListResponse.md
|
119
119
|
- docs/CurrencyOpposite.md
|
120
|
+
- docs/CurrencyOppositeAllOf.md
|
120
121
|
- docs/Debit.md
|
121
122
|
- docs/DebitListRequest.md
|
122
123
|
- docs/DebitListResponse.md
|
@@ -128,6 +129,7 @@ files:
|
|
128
129
|
- docs/DocumentRequest.md
|
129
130
|
- docs/DocumentResponse.md
|
130
131
|
- docs/DocumentWebhook.md
|
132
|
+
- docs/DocumentWebhookAllOf.md
|
131
133
|
- docs/DocumentsApi.md
|
132
134
|
- docs/ErrorStatus.md
|
133
135
|
- docs/FieldDescription.md
|
@@ -149,6 +151,7 @@ files:
|
|
149
151
|
- docs/PaymentMethod.md
|
150
152
|
- docs/PaymentMethodListResponse.md
|
151
153
|
- docs/PaymentMethodOpposite.md
|
154
|
+
- docs/PaymentMethodOppositeAllOf.md
|
152
155
|
- docs/PaymentMethodsApi.md
|
153
156
|
- docs/PayoutMethod.md
|
154
157
|
- docs/PayoutMethodBankAccountTypeEnum.md
|
@@ -172,6 +175,7 @@ files:
|
|
172
175
|
- docs/PayoutMethodDetailsMobile.md
|
173
176
|
- docs/PayoutMethodDetailsNGNBank.md
|
174
177
|
- docs/PayoutMethodDetailsNZDBank.md
|
178
|
+
- docs/PayoutMethodDetailsUGXBank.md
|
175
179
|
- docs/PayoutMethodDetailsUSDBank.md
|
176
180
|
- docs/PayoutMethodDetailsUSDCash.md
|
177
181
|
- docs/PayoutMethodDetailsXAFBank.md
|
@@ -192,6 +196,7 @@ files:
|
|
192
196
|
- docs/PayoutMethodResponse.md
|
193
197
|
- docs/PayoutMethodTransferReasonEnum.md
|
194
198
|
- docs/PayoutMethodWebhook.md
|
199
|
+
- docs/PayoutMethodWebhookAllOf.md
|
195
200
|
- docs/PayoutMethodsApi.md
|
196
201
|
- docs/PoliticallyExposedPerson.md
|
197
202
|
- docs/ProofOfPayment.md
|
@@ -203,6 +208,7 @@ files:
|
|
203
208
|
- docs/RecipientState.md
|
204
209
|
- docs/RecipientStateReasonDetails.md
|
205
210
|
- docs/RecipientWebhook.md
|
211
|
+
- docs/RecipientWebhookAllOf.md
|
206
212
|
- docs/RecipientsApi.md
|
207
213
|
- docs/Sender.md
|
208
214
|
- docs/SenderListResponse.md
|
@@ -212,6 +218,7 @@ files:
|
|
212
218
|
- docs/SenderResponseMeta.md
|
213
219
|
- docs/SenderState.md
|
214
220
|
- docs/SenderWebhook.md
|
221
|
+
- docs/SenderWebhookAllOf.md
|
215
222
|
- docs/SendersApi.md
|
216
223
|
- docs/StateReasonDetails.md
|
217
224
|
- docs/Transaction.md
|
@@ -223,6 +230,7 @@ files:
|
|
223
230
|
- docs/TransactionState.md
|
224
231
|
- docs/TransactionTraits.md
|
225
232
|
- docs/TransactionWebhook.md
|
233
|
+
- docs/TransactionWebhookAllOf.md
|
226
234
|
- docs/TransactionsApi.md
|
227
235
|
- docs/ValidationErrorDescription.md
|
228
236
|
- docs/Webhook.md
|
@@ -271,9 +279,11 @@ files:
|
|
271
279
|
- lib/transferzero-sdk/models/api_log_response.rb
|
272
280
|
- lib/transferzero-sdk/models/currency.rb
|
273
281
|
- lib/transferzero-sdk/models/currency_exchange.rb
|
282
|
+
- lib/transferzero-sdk/models/currency_exchange_all_of.rb
|
274
283
|
- lib/transferzero-sdk/models/currency_exchange_list_response.rb
|
275
284
|
- lib/transferzero-sdk/models/currency_list_response.rb
|
276
285
|
- lib/transferzero-sdk/models/currency_opposite.rb
|
286
|
+
- lib/transferzero-sdk/models/currency_opposite_all_of.rb
|
277
287
|
- lib/transferzero-sdk/models/debit.rb
|
278
288
|
- lib/transferzero-sdk/models/debit_list_request.rb
|
279
289
|
- lib/transferzero-sdk/models/debit_list_response.rb
|
@@ -285,6 +295,7 @@ files:
|
|
285
295
|
- lib/transferzero-sdk/models/document_request.rb
|
286
296
|
- lib/transferzero-sdk/models/document_response.rb
|
287
297
|
- lib/transferzero-sdk/models/document_webhook.rb
|
298
|
+
- lib/transferzero-sdk/models/document_webhook_all_of.rb
|
288
299
|
- lib/transferzero-sdk/models/error_status.rb
|
289
300
|
- lib/transferzero-sdk/models/field_description.rb
|
290
301
|
- lib/transferzero-sdk/models/field_select_validation.rb
|
@@ -303,6 +314,7 @@ files:
|
|
303
314
|
- lib/transferzero-sdk/models/payment_method.rb
|
304
315
|
- lib/transferzero-sdk/models/payment_method_list_response.rb
|
305
316
|
- lib/transferzero-sdk/models/payment_method_opposite.rb
|
317
|
+
- lib/transferzero-sdk/models/payment_method_opposite_all_of.rb
|
306
318
|
- lib/transferzero-sdk/models/payout_method.rb
|
307
319
|
- lib/transferzero-sdk/models/payout_method_bank_account_type_enum.rb
|
308
320
|
- lib/transferzero-sdk/models/payout_method_cash_provider_enum.rb
|
@@ -325,6 +337,7 @@ files:
|
|
325
337
|
- lib/transferzero-sdk/models/payout_method_details_mobile.rb
|
326
338
|
- lib/transferzero-sdk/models/payout_method_details_ngn_bank.rb
|
327
339
|
- lib/transferzero-sdk/models/payout_method_details_nzd_bank.rb
|
340
|
+
- lib/transferzero-sdk/models/payout_method_details_ugx_bank.rb
|
328
341
|
- lib/transferzero-sdk/models/payout_method_details_usd_bank.rb
|
329
342
|
- lib/transferzero-sdk/models/payout_method_details_usd_cash.rb
|
330
343
|
- lib/transferzero-sdk/models/payout_method_details_xaf_bank.rb
|
@@ -345,6 +358,7 @@ files:
|
|
345
358
|
- lib/transferzero-sdk/models/payout_method_response.rb
|
346
359
|
- lib/transferzero-sdk/models/payout_method_transfer_reason_enum.rb
|
347
360
|
- lib/transferzero-sdk/models/payout_method_webhook.rb
|
361
|
+
- lib/transferzero-sdk/models/payout_method_webhook_all_of.rb
|
348
362
|
- lib/transferzero-sdk/models/politically_exposed_person.rb
|
349
363
|
- lib/transferzero-sdk/models/proof_of_payment.rb
|
350
364
|
- lib/transferzero-sdk/models/proof_of_payment_list_response.rb
|
@@ -355,6 +369,7 @@ files:
|
|
355
369
|
- lib/transferzero-sdk/models/recipient_state.rb
|
356
370
|
- lib/transferzero-sdk/models/recipient_state_reason_details.rb
|
357
371
|
- lib/transferzero-sdk/models/recipient_webhook.rb
|
372
|
+
- lib/transferzero-sdk/models/recipient_webhook_all_of.rb
|
358
373
|
- lib/transferzero-sdk/models/sender.rb
|
359
374
|
- lib/transferzero-sdk/models/sender_list_response.rb
|
360
375
|
- lib/transferzero-sdk/models/sender_request.rb
|
@@ -363,6 +378,7 @@ files:
|
|
363
378
|
- lib/transferzero-sdk/models/sender_response_meta.rb
|
364
379
|
- lib/transferzero-sdk/models/sender_state.rb
|
365
380
|
- lib/transferzero-sdk/models/sender_webhook.rb
|
381
|
+
- lib/transferzero-sdk/models/sender_webhook_all_of.rb
|
366
382
|
- lib/transferzero-sdk/models/state_reason_details.rb
|
367
383
|
- lib/transferzero-sdk/models/transaction.rb
|
368
384
|
- lib/transferzero-sdk/models/transaction_list_response.rb
|
@@ -373,6 +389,7 @@ files:
|
|
373
389
|
- lib/transferzero-sdk/models/transaction_state.rb
|
374
390
|
- lib/transferzero-sdk/models/transaction_traits.rb
|
375
391
|
- lib/transferzero-sdk/models/transaction_webhook.rb
|
392
|
+
- lib/transferzero-sdk/models/transaction_webhook_all_of.rb
|
376
393
|
- lib/transferzero-sdk/models/validation_error_description.rb
|
377
394
|
- lib/transferzero-sdk/models/webhook.rb
|
378
395
|
- lib/transferzero-sdk/models/webhook_definition.rb
|
@@ -413,9 +430,11 @@ files:
|
|
413
430
|
- spec/models/api_log_list_response_spec.rb
|
414
431
|
- spec/models/api_log_response_spec.rb
|
415
432
|
- spec/models/api_log_spec.rb
|
433
|
+
- spec/models/currency_exchange_all_of_spec.rb
|
416
434
|
- spec/models/currency_exchange_list_response_spec.rb
|
417
435
|
- spec/models/currency_exchange_spec.rb
|
418
436
|
- spec/models/currency_list_response_spec.rb
|
437
|
+
- spec/models/currency_opposite_all_of_spec.rb
|
419
438
|
- spec/models/currency_opposite_spec.rb
|
420
439
|
- spec/models/currency_spec.rb
|
421
440
|
- spec/models/debit_list_request_spec.rb
|
@@ -428,6 +447,7 @@ files:
|
|
428
447
|
- spec/models/document_request_spec.rb
|
429
448
|
- spec/models/document_response_spec.rb
|
430
449
|
- spec/models/document_spec.rb
|
450
|
+
- spec/models/document_webhook_all_of_spec.rb
|
431
451
|
- spec/models/document_webhook_spec.rb
|
432
452
|
- spec/models/error_status_spec.rb
|
433
453
|
- spec/models/field_description_spec.rb
|
@@ -445,6 +465,7 @@ files:
|
|
445
465
|
- spec/models/payin_method_state_spec.rb
|
446
466
|
- spec/models/payin_method_ux_flow_spec.rb
|
447
467
|
- spec/models/payment_method_list_response_spec.rb
|
468
|
+
- spec/models/payment_method_opposite_all_of_spec.rb
|
448
469
|
- spec/models/payment_method_opposite_spec.rb
|
449
470
|
- spec/models/payment_method_spec.rb
|
450
471
|
- spec/models/payout_method_bank_account_type_enum_spec.rb
|
@@ -468,6 +489,7 @@ files:
|
|
468
489
|
- spec/models/payout_method_details_ngn_bank_spec.rb
|
469
490
|
- spec/models/payout_method_details_nzd_bank_spec.rb
|
470
491
|
- spec/models/payout_method_details_spec.rb
|
492
|
+
- spec/models/payout_method_details_ugx_bank_spec.rb
|
471
493
|
- spec/models/payout_method_details_usd_bank_spec.rb
|
472
494
|
- spec/models/payout_method_details_usd_cash_spec.rb
|
473
495
|
- spec/models/payout_method_details_xaf_bank_spec.rb
|
@@ -488,6 +510,7 @@ files:
|
|
488
510
|
- spec/models/payout_method_response_spec.rb
|
489
511
|
- spec/models/payout_method_spec.rb
|
490
512
|
- spec/models/payout_method_transfer_reason_enum_spec.rb
|
513
|
+
- spec/models/payout_method_webhook_all_of_spec.rb
|
491
514
|
- spec/models/payout_method_webhook_spec.rb
|
492
515
|
- spec/models/politically_exposed_person_spec.rb
|
493
516
|
- spec/models/proof_of_payment_list_response_spec.rb
|
@@ -498,6 +521,7 @@ files:
|
|
498
521
|
- spec/models/recipient_spec.rb
|
499
522
|
- spec/models/recipient_state_reason_details_spec.rb
|
500
523
|
- spec/models/recipient_state_spec.rb
|
524
|
+
- spec/models/recipient_webhook_all_of_spec.rb
|
501
525
|
- spec/models/recipient_webhook_spec.rb
|
502
526
|
- spec/models/sender_list_response_spec.rb
|
503
527
|
- spec/models/sender_request_spec.rb
|
@@ -506,6 +530,7 @@ files:
|
|
506
530
|
- spec/models/sender_response_spec.rb
|
507
531
|
- spec/models/sender_spec.rb
|
508
532
|
- spec/models/sender_state_spec.rb
|
533
|
+
- spec/models/sender_webhook_all_of_spec.rb
|
509
534
|
- spec/models/sender_webhook_spec.rb
|
510
535
|
- spec/models/state_reason_details_spec.rb
|
511
536
|
- spec/models/transaction_list_response_spec.rb
|
@@ -516,6 +541,7 @@ files:
|
|
516
541
|
- spec/models/transaction_spec.rb
|
517
542
|
- spec/models/transaction_state_spec.rb
|
518
543
|
- spec/models/transaction_traits_spec.rb
|
544
|
+
- spec/models/transaction_webhook_all_of_spec.rb
|
519
545
|
- spec/models/transaction_webhook_spec.rb
|
520
546
|
- spec/models/validation_error_description_spec.rb
|
521
547
|
- spec/models/webhook_definition_event_list_response_spec.rb
|
@@ -531,6 +557,7 @@ files:
|
|
531
557
|
- spec/models/webhook_log_spec.rb
|
532
558
|
- spec/models/webhook_spec.rb
|
533
559
|
- spec/spec_helper.rb
|
560
|
+
- transferzero-sdk-1.26.1.gem
|
534
561
|
- transferzero-sdk.gemspec
|
535
562
|
homepage: https://github.com/transferzero/transferzero-sdk-ruby
|
536
563
|
licenses:
|
@@ -551,7 +578,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
551
578
|
- !ruby/object:Gem::Version
|
552
579
|
version: '0'
|
553
580
|
requirements: []
|
554
|
-
rubygems_version: 3.
|
581
|
+
rubygems_version: 3.1.6
|
555
582
|
signing_key:
|
556
583
|
specification_version: 4
|
557
584
|
summary: TransferZero API Ruby Gem
|
@@ -587,6 +614,7 @@ test_files:
|
|
587
614
|
- spec/models/webhook_log_metadata_response_spec.rb
|
588
615
|
- spec/models/currency_list_response_spec.rb
|
589
616
|
- spec/models/debit_response_spec.rb
|
617
|
+
- spec/models/currency_opposite_all_of_spec.rb
|
590
618
|
- spec/models/webhook_definition_event_list_response_spec.rb
|
591
619
|
- spec/models/debit_spec.rb
|
592
620
|
- spec/models/payin_method_details_btc_spec.rb
|
@@ -596,16 +624,19 @@ test_files:
|
|
596
624
|
- spec/models/webhook_definition_request_spec.rb
|
597
625
|
- spec/models/sender_state_spec.rb
|
598
626
|
- spec/models/payout_method_request_spec.rb
|
627
|
+
- spec/models/document_webhook_all_of_spec.rb
|
599
628
|
- spec/models/payout_method_details_kes_mobile_spec.rb
|
600
629
|
- spec/models/payout_method_details_gbp_bank_spec.rb
|
601
630
|
- spec/models/webhook_log_metadata_request_spec.rb
|
602
631
|
- spec/models/recipient_webhook_spec.rb
|
632
|
+
- spec/models/recipient_webhook_all_of_spec.rb
|
603
633
|
- spec/models/api_log_list_response_spec.rb
|
604
634
|
- spec/models/debit_list_response_spec.rb
|
605
635
|
- spec/models/pagination_meta_spec.rb
|
606
636
|
- spec/models/account_validation_result_spec.rb
|
607
637
|
- spec/models/debit_request_wrapper_spec.rb
|
608
638
|
- spec/models/document_webhook_spec.rb
|
639
|
+
- spec/models/transaction_webhook_all_of_spec.rb
|
609
640
|
- spec/models/payout_method_details_zar_bank_spec.rb
|
610
641
|
- spec/models/payout_method_gender_enum_spec.rb
|
611
642
|
- spec/models/payout_method_details_inr_bank_spec.rb
|
@@ -615,9 +646,11 @@ test_files:
|
|
615
646
|
- spec/models/sender_response_spec.rb
|
616
647
|
- spec/models/payout_method_details_bwp_bank_spec.rb
|
617
648
|
- spec/models/payin_method_details_mobile_spec.rb
|
649
|
+
- spec/models/currency_exchange_all_of_spec.rb
|
618
650
|
- spec/models/payout_method_details_mad_cash_spec.rb
|
619
651
|
- spec/models/account_validation_response_spec.rb
|
620
652
|
- spec/models/payout_method_details_btc_spec.rb
|
653
|
+
- spec/models/payment_method_opposite_all_of_spec.rb
|
621
654
|
- spec/models/api_log_spec.rb
|
622
655
|
- spec/models/payin_method_state_spec.rb
|
623
656
|
- spec/models/document_response_spec.rb
|
@@ -630,8 +663,10 @@ test_files:
|
|
630
663
|
- spec/models/transaction_webhook_spec.rb
|
631
664
|
- spec/models/payout_method_details_xof_bank_spec.rb
|
632
665
|
- spec/models/webhook_log_metadata_spec.rb
|
666
|
+
- spec/models/sender_webhook_all_of_spec.rb
|
633
667
|
- spec/models/account_list_response_spec.rb
|
634
668
|
- spec/models/document_list_response_spec.rb
|
669
|
+
- spec/models/payout_method_details_ugx_bank_spec.rb
|
635
670
|
- spec/models/transaction_spec.rb
|
636
671
|
- spec/models/payin_method_ux_flow_spec.rb
|
637
672
|
- spec/models/field_select_validation_spec.rb
|
@@ -664,6 +699,7 @@ test_files:
|
|
664
699
|
- spec/models/account_response_spec.rb
|
665
700
|
- spec/models/recipient_request_spec.rb
|
666
701
|
- spec/models/recipient_state_reason_details_spec.rb
|
702
|
+
- spec/models/payout_method_webhook_all_of_spec.rb
|
667
703
|
- spec/models/payout_method_webhook_spec.rb
|
668
704
|
- spec/models/sender_response_meta_spec.rb
|
669
705
|
- spec/models/payout_method_nature_of_business_enum_spec.rb
|