transferzero-sdk 1.24.0 → 1.26.1
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 +50 -54
- data/README.md +7 -4
- data/docs/PayoutMethod.md +1 -1
- data/docs/PayoutMethodDetails.md +4 -2
- data/docs/PayoutMethodDetailsBWPBank.md +25 -0
- data/docs/PayoutMethodDetailsCADBank.md +25 -0
- data/docs/PayoutMethodDetailsUSDBank.md +10 -2
- data/docs/PayoutMethodDetailsZMWBank.md +23 -0
- data/lib/transferzero-sdk/api_client.rb +1 -1
- data/lib/transferzero-sdk/models/payout_method.rb +1 -1
- data/lib/transferzero-sdk/models/payout_method_details.rb +25 -8
- data/lib/transferzero-sdk/models/payout_method_details_bwp_bank.rb +264 -0
- data/lib/transferzero-sdk/models/payout_method_details_cad_bank.rb +264 -0
- data/lib/transferzero-sdk/models/payout_method_details_usd_bank.rb +38 -12
- data/lib/transferzero-sdk/models/payout_method_details_zmw_bank.rb +250 -0
- data/lib/transferzero-sdk/models/payout_method_identity_card_type_enum.rb +2 -0
- data/lib/transferzero-sdk/version.rb +1 -1
- data/lib/transferzero-sdk.rb +3 -0
- data/spec/models/payout_method_details_bwp_bank_spec.rb +65 -0
- data/spec/models/payout_method_details_cad_bank_spec.rb +65 -0
- data/spec/models/payout_method_details_zmw_bank_spec.rb +59 -0
- metadata +15 -14
- 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
- data/transferzero-sdk-1.19.5.gem +0 -0
- data/transferzero-sdk-1.20.1.gem +0 -0
- data/transferzero-sdk-1.21.0.gem +0 -0
- data/transferzero-sdk-1.22.0.gem +0 -0
- data/transferzero-sdk-1.23.0.gem +0 -0
- data/transferzero-sdk-1.23.3.gem +0 -0
- data/transferzero-sdk-1.23.5.gem +0 -0
@@ -0,0 +1,250 @@
|
|
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 'date'
|
14
|
+
|
15
|
+
module TransferZero
|
16
|
+
# ```JSON \"details\": { \"first_name\": \"First\", \"last_name\": \"Last\", \"bank_account\": \"1234567890\", \"branch_code\": \"ZM210003\", } ``` See [ZMW Bank](https://docs.transferzero.com/docs/payout-details/#zmwbank) documentation for the branch_code list
|
17
|
+
class PayoutMethodDetailsZMWBank
|
18
|
+
attr_accessor :first_name
|
19
|
+
|
20
|
+
attr_accessor :last_name
|
21
|
+
|
22
|
+
attr_accessor :bank_account
|
23
|
+
|
24
|
+
attr_accessor :branch_code
|
25
|
+
|
26
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
27
|
+
def self.attribute_map
|
28
|
+
{
|
29
|
+
:'first_name' => :'first_name',
|
30
|
+
:'last_name' => :'last_name',
|
31
|
+
:'bank_account' => :'bank_account',
|
32
|
+
:'branch_code' => :'branch_code'
|
33
|
+
}
|
34
|
+
end
|
35
|
+
|
36
|
+
# Attribute type mapping.
|
37
|
+
def self.openapi_types
|
38
|
+
{
|
39
|
+
:'first_name' => :'String',
|
40
|
+
:'last_name' => :'String',
|
41
|
+
:'bank_account' => :'String',
|
42
|
+
:'branch_code' => :'String'
|
43
|
+
}
|
44
|
+
end
|
45
|
+
|
46
|
+
# Initializes the object
|
47
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
48
|
+
def initialize(attributes = {})
|
49
|
+
if (!attributes.is_a?(Hash))
|
50
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `TransferZero::PayoutMethodDetailsZMWBank` initialize method"
|
51
|
+
end
|
52
|
+
|
53
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
54
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
55
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
56
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `TransferZero::PayoutMethodDetailsZMWBank`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
57
|
+
end
|
58
|
+
h[k.to_sym] = v
|
59
|
+
}
|
60
|
+
|
61
|
+
if attributes.key?(:'first_name')
|
62
|
+
self.first_name = attributes[:'first_name']
|
63
|
+
end
|
64
|
+
|
65
|
+
if attributes.key?(:'last_name')
|
66
|
+
self.last_name = attributes[:'last_name']
|
67
|
+
end
|
68
|
+
|
69
|
+
if attributes.key?(:'bank_account')
|
70
|
+
self.bank_account = attributes[:'bank_account']
|
71
|
+
end
|
72
|
+
|
73
|
+
if attributes.key?(:'branch_code')
|
74
|
+
self.branch_code = attributes[:'branch_code']
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
79
|
+
# @return Array for valid properties with the reasons
|
80
|
+
def list_invalid_properties
|
81
|
+
invalid_properties = Array.new
|
82
|
+
if @first_name.nil?
|
83
|
+
invalid_properties.push('invalid value for "first_name", first_name cannot be nil.')
|
84
|
+
end
|
85
|
+
|
86
|
+
if @last_name.nil?
|
87
|
+
invalid_properties.push('invalid value for "last_name", last_name cannot be nil.')
|
88
|
+
end
|
89
|
+
|
90
|
+
if @bank_account.nil?
|
91
|
+
invalid_properties.push('invalid value for "bank_account", bank_account cannot be nil.')
|
92
|
+
end
|
93
|
+
|
94
|
+
if @branch_code.nil?
|
95
|
+
invalid_properties.push('invalid value for "branch_code", branch_code cannot be nil.')
|
96
|
+
end
|
97
|
+
|
98
|
+
invalid_properties
|
99
|
+
end
|
100
|
+
|
101
|
+
# Check to see if the all the properties in the model are valid
|
102
|
+
# @return true if the model is valid
|
103
|
+
def valid?
|
104
|
+
return false if @first_name.nil?
|
105
|
+
return false if @last_name.nil?
|
106
|
+
return false if @bank_account.nil?
|
107
|
+
return false if @branch_code.nil?
|
108
|
+
true
|
109
|
+
end
|
110
|
+
|
111
|
+
# Checks equality by comparing each attribute.
|
112
|
+
# @param [Object] Object to be compared
|
113
|
+
def ==(o)
|
114
|
+
return true if self.equal?(o)
|
115
|
+
self.class == o.class &&
|
116
|
+
first_name == o.first_name &&
|
117
|
+
last_name == o.last_name &&
|
118
|
+
bank_account == o.bank_account &&
|
119
|
+
branch_code == o.branch_code
|
120
|
+
end
|
121
|
+
|
122
|
+
# @see the `==` method
|
123
|
+
# @param [Object] Object to be compared
|
124
|
+
def eql?(o)
|
125
|
+
self == o
|
126
|
+
end
|
127
|
+
|
128
|
+
# Calculates hash code according to all attributes.
|
129
|
+
# @return [Integer] Hash code
|
130
|
+
def hash
|
131
|
+
[first_name, last_name, bank_account, branch_code].hash
|
132
|
+
end
|
133
|
+
|
134
|
+
require 'active_support/core_ext/hash'
|
135
|
+
require 'active_support/hash_with_indifferent_access.rb'
|
136
|
+
# Builds the object from hash
|
137
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
138
|
+
# @return [Object] Returns the model itself
|
139
|
+
def build_from_hash(attributes)
|
140
|
+
return nil unless attributes.is_a?(Hash)
|
141
|
+
self.class.openapi_types.each_pair do |key, type|
|
142
|
+
if type =~ /\AArray<(.*)>/i
|
143
|
+
# check to ensure the input is an array given that the the attribute
|
144
|
+
# is documented as an array but the input is not
|
145
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
146
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
147
|
+
end
|
148
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
149
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
150
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
151
|
+
end
|
152
|
+
|
153
|
+
self
|
154
|
+
end
|
155
|
+
|
156
|
+
# Deserializes the data based on type
|
157
|
+
# @param string type Data type
|
158
|
+
# @param string value Value to be deserialized
|
159
|
+
# @return [Object] Deserialized data
|
160
|
+
def _deserialize(type, value)
|
161
|
+
case type.to_sym
|
162
|
+
when :DateTime
|
163
|
+
DateTime.parse(value)
|
164
|
+
when :Date
|
165
|
+
Date.parse(value)
|
166
|
+
when :String
|
167
|
+
value.to_s
|
168
|
+
when :Integer
|
169
|
+
value.to_i
|
170
|
+
when :Float
|
171
|
+
value.to_f
|
172
|
+
when :Boolean
|
173
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
174
|
+
true
|
175
|
+
else
|
176
|
+
false
|
177
|
+
end
|
178
|
+
when :Object
|
179
|
+
# generic object (usually a Hash), return directly
|
180
|
+
value
|
181
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
182
|
+
inner_type = Regexp.last_match[:inner_type]
|
183
|
+
value.map { |v| _deserialize(inner_type, v) }
|
184
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
185
|
+
k_type = Regexp.last_match[:k_type]
|
186
|
+
v_type = Regexp.last_match[:v_type]
|
187
|
+
{}.tap do |hash|
|
188
|
+
value.each do |k, v|
|
189
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
190
|
+
end
|
191
|
+
end
|
192
|
+
else # model
|
193
|
+
temp_model = TransferZero.const_get(type).new
|
194
|
+
temp_model.build_from_hash(value)
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
198
|
+
# Returns the string representation of the object
|
199
|
+
# @return [String] String presentation of the object
|
200
|
+
def to_s
|
201
|
+
to_hash.to_s
|
202
|
+
end
|
203
|
+
|
204
|
+
# to_body is an alias to to_hash (backward compatibility)
|
205
|
+
# @return [Hash] Returns the object in the form of hash
|
206
|
+
def to_body
|
207
|
+
to_hash
|
208
|
+
end
|
209
|
+
|
210
|
+
# Returns the object in the form of hash
|
211
|
+
# @return [Hash] Returns the object in the form of hash
|
212
|
+
def to_hash
|
213
|
+
hash = {}
|
214
|
+
self.class.attribute_map.each_pair do |attr, param|
|
215
|
+
value = self.send(attr)
|
216
|
+
next if value.nil?
|
217
|
+
hash[param] = _to_hash(value)
|
218
|
+
end
|
219
|
+
::ActiveSupport::HashWithIndifferentAccess.new(hash)
|
220
|
+
end
|
221
|
+
|
222
|
+
def [](key)
|
223
|
+
to_hash[key]
|
224
|
+
end
|
225
|
+
|
226
|
+
def dig(*args)
|
227
|
+
to_hash.dig(*args)
|
228
|
+
end
|
229
|
+
|
230
|
+
# Outputs non-array value in the form of hash
|
231
|
+
# For object, use to_hash. Otherwise, just return the value
|
232
|
+
# @param [Object] value Any valid value
|
233
|
+
# @return [Hash] Returns the value in the form of hash
|
234
|
+
def _to_hash(value)
|
235
|
+
if value.is_a?(Array)
|
236
|
+
value.compact.map { |v| _to_hash(v) }
|
237
|
+
elsif value.is_a?(Hash)
|
238
|
+
{}.tap do |hash|
|
239
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
240
|
+
end
|
241
|
+
elsif value.respond_to? :to_hash
|
242
|
+
value.to_hash
|
243
|
+
else
|
244
|
+
value
|
245
|
+
end
|
246
|
+
end
|
247
|
+
|
248
|
+
end
|
249
|
+
|
250
|
+
end
|
data/lib/transferzero-sdk.rb
CHANGED
@@ -69,7 +69,9 @@ require 'transferzero-sdk/models/payout_method_country_enum'
|
|
69
69
|
require 'transferzero-sdk/models/payout_method_details'
|
70
70
|
require 'transferzero-sdk/models/payout_method_details_brl_bank'
|
71
71
|
require 'transferzero-sdk/models/payout_method_details_btc'
|
72
|
+
require 'transferzero-sdk/models/payout_method_details_bwp_bank'
|
72
73
|
require 'transferzero-sdk/models/payout_method_details_balance'
|
74
|
+
require 'transferzero-sdk/models/payout_method_details_cad_bank'
|
73
75
|
require 'transferzero-sdk/models/payout_method_details_gbp_bank'
|
74
76
|
require 'transferzero-sdk/models/payout_method_details_ghs_bank'
|
75
77
|
require 'transferzero-sdk/models/payout_method_details_ghs_cash'
|
@@ -90,6 +92,7 @@ require 'transferzero-sdk/models/payout_method_details_xof_bank'
|
|
90
92
|
require 'transferzero-sdk/models/payout_method_details_xof_cash'
|
91
93
|
require 'transferzero-sdk/models/payout_method_details_xof_mobile'
|
92
94
|
require 'transferzero-sdk/models/payout_method_details_zar_bank'
|
95
|
+
require 'transferzero-sdk/models/payout_method_details_zmw_bank'
|
93
96
|
require 'transferzero-sdk/models/payout_method_gender_enum'
|
94
97
|
require 'transferzero-sdk/models/payout_method_identity_card_type_enum'
|
95
98
|
require 'transferzero-sdk/models/payout_method_legal_entity_type_enum'
|
@@ -0,0 +1,65 @@
|
|
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::PayoutMethodDetailsBWPBank
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PayoutMethodDetailsBWPBank' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = TransferZero::PayoutMethodDetailsBWPBank.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PayoutMethodDetailsBWPBank' do
|
31
|
+
it 'should create an instance of PayoutMethodDetailsBWPBank' do
|
32
|
+
expect(@instance).to be_instance_of(TransferZero::PayoutMethodDetailsBWPBank)
|
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 "bank_name"' 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 "bank_account"' 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 "branch_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
|
+
end
|
@@ -0,0 +1,65 @@
|
|
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::PayoutMethodDetailsCADBank
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PayoutMethodDetailsCADBank' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = TransferZero::PayoutMethodDetailsCADBank.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PayoutMethodDetailsCADBank' do
|
31
|
+
it 'should create an instance of PayoutMethodDetailsCADBank' do
|
32
|
+
expect(@instance).to be_instance_of(TransferZero::PayoutMethodDetailsCADBank)
|
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 "bank_account"' 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 "bank_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 "branch_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
|
+
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::PayoutMethodDetailsZMWBank
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PayoutMethodDetailsZMWBank' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = TransferZero::PayoutMethodDetailsZMWBank.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PayoutMethodDetailsZMWBank' do
|
31
|
+
it 'should create an instance of PayoutMethodDetailsZMWBank' do
|
32
|
+
expect(@instance).to be_instance_of(TransferZero::PayoutMethodDetailsZMWBank)
|
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 "bank_account"' 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 "branch_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
|
+
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.26.1
|
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-03-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -157,7 +157,9 @@ files:
|
|
157
157
|
- docs/PayoutMethodDetails.md
|
158
158
|
- docs/PayoutMethodDetailsBRLBank.md
|
159
159
|
- docs/PayoutMethodDetailsBTC.md
|
160
|
+
- docs/PayoutMethodDetailsBWPBank.md
|
160
161
|
- docs/PayoutMethodDetailsBalance.md
|
162
|
+
- docs/PayoutMethodDetailsCADBank.md
|
161
163
|
- docs/PayoutMethodDetailsGBPBank.md
|
162
164
|
- docs/PayoutMethodDetailsGHSBank.md
|
163
165
|
- docs/PayoutMethodDetailsGHSCash.md
|
@@ -178,6 +180,7 @@ files:
|
|
178
180
|
- docs/PayoutMethodDetailsXOFCash.md
|
179
181
|
- docs/PayoutMethodDetailsXOFMobile.md
|
180
182
|
- docs/PayoutMethodDetailsZARBank.md
|
183
|
+
- docs/PayoutMethodDetailsZMWBank.md
|
181
184
|
- docs/PayoutMethodGenderEnum.md
|
182
185
|
- docs/PayoutMethodIdentityCardTypeEnum.md
|
183
186
|
- docs/PayoutMethodLegalEntityTypeEnum.md
|
@@ -308,6 +311,8 @@ files:
|
|
308
311
|
- lib/transferzero-sdk/models/payout_method_details_balance.rb
|
309
312
|
- lib/transferzero-sdk/models/payout_method_details_brl_bank.rb
|
310
313
|
- lib/transferzero-sdk/models/payout_method_details_btc.rb
|
314
|
+
- lib/transferzero-sdk/models/payout_method_details_bwp_bank.rb
|
315
|
+
- lib/transferzero-sdk/models/payout_method_details_cad_bank.rb
|
311
316
|
- lib/transferzero-sdk/models/payout_method_details_gbp_bank.rb
|
312
317
|
- lib/transferzero-sdk/models/payout_method_details_ghs_bank.rb
|
313
318
|
- lib/transferzero-sdk/models/payout_method_details_ghs_cash.rb
|
@@ -328,6 +333,7 @@ files:
|
|
328
333
|
- lib/transferzero-sdk/models/payout_method_details_xof_cash.rb
|
329
334
|
- lib/transferzero-sdk/models/payout_method_details_xof_mobile.rb
|
330
335
|
- lib/transferzero-sdk/models/payout_method_details_zar_bank.rb
|
336
|
+
- lib/transferzero-sdk/models/payout_method_details_zmw_bank.rb
|
331
337
|
- lib/transferzero-sdk/models/payout_method_gender_enum.rb
|
332
338
|
- lib/transferzero-sdk/models/payout_method_identity_card_type_enum.rb
|
333
339
|
- lib/transferzero-sdk/models/payout_method_legal_entity_type_enum.rb
|
@@ -447,6 +453,8 @@ files:
|
|
447
453
|
- spec/models/payout_method_details_balance_spec.rb
|
448
454
|
- spec/models/payout_method_details_brl_bank_spec.rb
|
449
455
|
- spec/models/payout_method_details_btc_spec.rb
|
456
|
+
- spec/models/payout_method_details_bwp_bank_spec.rb
|
457
|
+
- spec/models/payout_method_details_cad_bank_spec.rb
|
450
458
|
- spec/models/payout_method_details_gbp_bank_spec.rb
|
451
459
|
- spec/models/payout_method_details_ghs_bank_spec.rb
|
452
460
|
- spec/models/payout_method_details_ghs_cash_spec.rb
|
@@ -468,6 +476,7 @@ files:
|
|
468
476
|
- spec/models/payout_method_details_xof_cash_spec.rb
|
469
477
|
- spec/models/payout_method_details_xof_mobile_spec.rb
|
470
478
|
- spec/models/payout_method_details_zar_bank_spec.rb
|
479
|
+
- spec/models/payout_method_details_zmw_bank_spec.rb
|
471
480
|
- spec/models/payout_method_gender_enum_spec.rb
|
472
481
|
- spec/models/payout_method_identity_card_type_enum_spec.rb
|
473
482
|
- spec/models/payout_method_legal_entity_type_enum_spec.rb
|
@@ -522,17 +531,6 @@ files:
|
|
522
531
|
- spec/models/webhook_log_spec.rb
|
523
532
|
- spec/models/webhook_spec.rb
|
524
533
|
- spec/spec_helper.rb
|
525
|
-
- transferzero-sdk-1.19.0.gem
|
526
|
-
- transferzero-sdk-1.19.2.gem
|
527
|
-
- transferzero-sdk-1.19.3.gem
|
528
|
-
- transferzero-sdk-1.19.4.gem
|
529
|
-
- transferzero-sdk-1.19.5.gem
|
530
|
-
- transferzero-sdk-1.20.1.gem
|
531
|
-
- transferzero-sdk-1.21.0.gem
|
532
|
-
- transferzero-sdk-1.22.0.gem
|
533
|
-
- transferzero-sdk-1.23.0.gem
|
534
|
-
- transferzero-sdk-1.23.3.gem
|
535
|
-
- transferzero-sdk-1.23.5.gem
|
536
534
|
- transferzero-sdk.gemspec
|
537
535
|
homepage: https://github.com/transferzero/transferzero-sdk-ruby
|
538
536
|
licenses:
|
@@ -553,7 +551,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
553
551
|
- !ruby/object:Gem::Version
|
554
552
|
version: '0'
|
555
553
|
requirements: []
|
556
|
-
rubygems_version: 3.
|
554
|
+
rubygems_version: 3.4.6
|
557
555
|
signing_key:
|
558
556
|
specification_version: 4
|
559
557
|
summary: TransferZero API Ruby Gem
|
@@ -574,6 +572,7 @@ test_files:
|
|
574
572
|
- spec/api/account_debits_api_spec.rb
|
575
573
|
- spec/configuration_spec.rb
|
576
574
|
- spec/models/webhook_definition_response_spec.rb
|
575
|
+
- spec/models/payout_method_details_cad_bank_spec.rb
|
577
576
|
- spec/models/payout_method_details_xof_cash_spec.rb
|
578
577
|
- spec/models/payout_method_details_nzd_bank_spec.rb
|
579
578
|
- spec/models/sender_spec.rb
|
@@ -614,6 +613,7 @@ test_files:
|
|
614
613
|
- spec/models/transaction_list_response_spec.rb
|
615
614
|
- spec/models/payin_method_spec.rb
|
616
615
|
- spec/models/sender_response_spec.rb
|
616
|
+
- spec/models/payout_method_details_bwp_bank_spec.rb
|
617
617
|
- spec/models/payin_method_details_mobile_spec.rb
|
618
618
|
- spec/models/payout_method_details_mad_cash_spec.rb
|
619
619
|
- spec/models/account_validation_response_spec.rb
|
@@ -625,6 +625,7 @@ test_files:
|
|
625
625
|
- spec/models/payout_method_details_brl_bank_spec.rb
|
626
626
|
- spec/models/validation_error_description_spec.rb
|
627
627
|
- spec/models/payin_method_request_spec.rb
|
628
|
+
- spec/models/payout_method_details_zmw_bank_spec.rb
|
628
629
|
- spec/models/proof_of_payment_list_response_spec.rb
|
629
630
|
- spec/models/transaction_webhook_spec.rb
|
630
631
|
- spec/models/payout_method_details_xof_bank_spec.rb
|
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
|
data/transferzero-sdk-1.19.5.gem
DELETED
Binary file
|
data/transferzero-sdk-1.20.1.gem
DELETED
Binary file
|
data/transferzero-sdk-1.21.0.gem
DELETED
Binary file
|
data/transferzero-sdk-1.22.0.gem
DELETED
Binary file
|
data/transferzero-sdk-1.23.0.gem
DELETED
Binary file
|
data/transferzero-sdk-1.23.3.gem
DELETED
Binary file
|
data/transferzero-sdk-1.23.5.gem
DELETED
Binary file
|