transferzero-sdk 1.12.2 → 1.14.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +9 -4
- data/docs/PayoutMethod.md +1 -1
- data/docs/PayoutMethodCountryEnumUSDBank.md +16 -0
- data/docs/PayoutMethodDetails.md +16 -6
- data/docs/PayoutMethodDetailsGHSCash.md +21 -0
- data/docs/PayoutMethodDetailsMADCash.md +3 -3
- data/docs/PayoutMethodDetailsUSDBank.md +27 -0
- data/docs/PayoutMethodDetailsXOFMobile.md +3 -1
- data/docs/PayoutMethodDetailsZARBank.md +13 -1
- data/docs/PayoutMethodLegalEntityTypeEnum.md +16 -0
- data/docs/PayoutMethodNatureOfBusinessEnum.md +16 -0
- data/docs/TransactionsApi.md +2 -0
- data/lib/transferzero-sdk.rb +5 -0
- data/lib/transferzero-sdk/api/transactions_api.rb +6 -0
- data/lib/transferzero-sdk/api_client.rb +2 -2
- data/lib/transferzero-sdk/models/account_validation_request.rb +4 -4
- data/lib/transferzero-sdk/models/payout_method.rb +1 -1
- data/lib/transferzero-sdk/models/payout_method_country_enum.rb +234 -8
- data/lib/transferzero-sdk/models/payout_method_country_enum_usd_bank.rb +269 -0
- data/lib/transferzero-sdk/models/payout_method_details.rb +65 -28
- 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 -16
- data/lib/transferzero-sdk/models/payout_method_details_usd_bank.rb +278 -0
- data/lib/transferzero-sdk/models/payout_method_details_xof_cash.rb +1 -1
- data/lib/transferzero-sdk/models/payout_method_details_xof_mobile.rb +14 -5
- data/lib/transferzero-sdk/models/payout_method_details_zar_bank.rb +59 -5
- data/lib/transferzero-sdk/models/payout_method_legal_entity_type_enum.rb +37 -0
- data/lib/transferzero-sdk/models/payout_method_mobile_provider_enum.rb +1 -0
- data/lib/transferzero-sdk/models/payout_method_nature_of_business_enum.rb +65 -0
- data/lib/transferzero-sdk/version.rb +1 -1
- data/spec/models/payout_method_country_enum_usd_bank_spec.rb +35 -0
- data/spec/models/payout_method_details_ghs_cash_spec.rb +53 -0
- data/spec/models/payout_method_details_usd_bank_spec.rb +71 -0
- data/spec/models/payout_method_legal_entity_type_enum_spec.rb +35 -0
- data/spec/models/payout_method_nature_of_business_enum_spec.rb +35 -0
- metadata +32 -13
- data/transferzero-sdk-1.9.0.gem +0 -0
@@ -13,7 +13,7 @@ OpenAPI Generator version: 4.0.0-beta3
|
|
13
13
|
require 'date'
|
14
14
|
|
15
15
|
module TransferZero
|
16
|
-
# ```JSON \"details\": { \"first_name\": \"First\", \"last_name\": \"Last\", \"phone_number\": \"212537718685\" # Mandatory; International format preferred \"sender_identity_card_type\" => \"O\", # Mandatory; Values: \"O\": Other, \"PP\": Passport, \"ID\": National ID \"sender_identity_card_id\" => 'AB12345678', # Mandatory \"sender_city_of_birth\" => \"London\", #
|
16
|
+
# ```JSON \"details\": { \"first_name\": \"First\", \"last_name\": \"Last\", \"phone_number\": \"212537718685\" # Mandatory; International format preferred \"sender_identity_card_type\" => \"O\", # Mandatory; Values: \"O\": Other, \"PP\": Passport, \"ID\": National ID \"sender_identity_card_id\" => 'AB12345678', # Mandatory \"sender_city_of_birth\" => \"London\", # Optional \"sender_country_of_birth\" => \"GB\", # Optional; ISO 2-letter format \"sender_gender\" => \"M\", # Optional; Values: \"M\": Male, \"F\": Female \"reason\" => \"Remittance payment\", # Optional; Default value is 'Remittance payment' \"identity_card_type\" => \"ID\", # Optional; Values: \"PP\": Passport, \"ID\": National ID \"identity_card_id\" => 'AB12345678' # Optional } ``` Please note when sending MAD::Cash payments you should subscribe to the recipient.pending webhook, as that will broadcast the payment reference ID the customer need to use to obtain the funds. Example webhook response excerpt - ```JSON { (...) \"state\":\"pending\", \"metadata\": { \"payment_reference\":\"9M5GJRJUBCY\" }, (...) } ``` The reference can also be provided optionally for MAD::Cash, but if you want to use this functionality please contact us for more details.
|
17
17
|
class PayoutMethodDetailsMADCash
|
18
18
|
attr_accessor :first_name
|
19
19
|
|
@@ -155,18 +155,6 @@ class PayoutMethodDetailsMADCash
|
|
155
155
|
invalid_properties.push('invalid value for "sender_identity_card_id", sender_identity_card_id cannot be nil.')
|
156
156
|
end
|
157
157
|
|
158
|
-
if @sender_city_of_birth.nil?
|
159
|
-
invalid_properties.push('invalid value for "sender_city_of_birth", sender_city_of_birth cannot be nil.')
|
160
|
-
end
|
161
|
-
|
162
|
-
if @sender_country_of_birth.nil?
|
163
|
-
invalid_properties.push('invalid value for "sender_country_of_birth", sender_country_of_birth cannot be nil.')
|
164
|
-
end
|
165
|
-
|
166
|
-
if @sender_gender.nil?
|
167
|
-
invalid_properties.push('invalid value for "sender_gender", sender_gender cannot be nil.')
|
168
|
-
end
|
169
|
-
|
170
158
|
invalid_properties
|
171
159
|
end
|
172
160
|
|
@@ -178,9 +166,6 @@ class PayoutMethodDetailsMADCash
|
|
178
166
|
return false if @phone_number.nil?
|
179
167
|
return false if @sender_identity_card_type.nil?
|
180
168
|
return false if @sender_identity_card_id.nil?
|
181
|
-
return false if @sender_city_of_birth.nil?
|
182
|
-
return false if @sender_country_of_birth.nil?
|
183
|
-
return false if @sender_gender.nil?
|
184
169
|
true
|
185
170
|
end
|
186
171
|
|
@@ -0,0 +1,278 @@
|
|
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\": \"Jane\", \"last_name\": \"Doe\", \"phone_number\": \"+2341234567\", \"bank_code\": \"057\", \"bank_account\": \"1234567890\", \"country\": \"NG\" } ``` See [USD Bank](https://docs.transferzero.com/docs/payout-details/#usdbank) documentation for the bank_code list
|
17
|
+
class PayoutMethodDetailsUSDBank
|
18
|
+
attr_accessor :first_name
|
19
|
+
|
20
|
+
attr_accessor :last_name
|
21
|
+
|
22
|
+
attr_accessor :phone_number
|
23
|
+
|
24
|
+
attr_accessor :bank_code
|
25
|
+
|
26
|
+
attr_accessor :bank_account
|
27
|
+
|
28
|
+
attr_accessor :country
|
29
|
+
|
30
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
31
|
+
def self.attribute_map
|
32
|
+
{
|
33
|
+
:'first_name' => :'first_name',
|
34
|
+
:'last_name' => :'last_name',
|
35
|
+
:'phone_number' => :'phone_number',
|
36
|
+
:'bank_code' => :'bank_code',
|
37
|
+
:'bank_account' => :'bank_account',
|
38
|
+
:'country' => :'country'
|
39
|
+
}
|
40
|
+
end
|
41
|
+
|
42
|
+
# Attribute type mapping.
|
43
|
+
def self.openapi_types
|
44
|
+
{
|
45
|
+
:'first_name' => :'String',
|
46
|
+
:'last_name' => :'String',
|
47
|
+
:'phone_number' => :'String',
|
48
|
+
:'bank_code' => :'String',
|
49
|
+
:'bank_account' => :'String',
|
50
|
+
:'country' => :'PayoutMethodCountryEnumUSDBank'
|
51
|
+
}
|
52
|
+
end
|
53
|
+
|
54
|
+
# Initializes the object
|
55
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
56
|
+
def initialize(attributes = {})
|
57
|
+
if (!attributes.is_a?(Hash))
|
58
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `TransferZero::PayoutMethodDetailsUSDBank` initialize method"
|
59
|
+
end
|
60
|
+
|
61
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
62
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
63
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
64
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `TransferZero::PayoutMethodDetailsUSDBank`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
65
|
+
end
|
66
|
+
h[k.to_sym] = v
|
67
|
+
}
|
68
|
+
|
69
|
+
if attributes.key?(:'first_name')
|
70
|
+
self.first_name = attributes[:'first_name']
|
71
|
+
end
|
72
|
+
|
73
|
+
if attributes.key?(:'last_name')
|
74
|
+
self.last_name = attributes[:'last_name']
|
75
|
+
end
|
76
|
+
|
77
|
+
if attributes.key?(:'phone_number')
|
78
|
+
self.phone_number = attributes[:'phone_number']
|
79
|
+
end
|
80
|
+
|
81
|
+
if attributes.key?(:'bank_code')
|
82
|
+
self.bank_code = attributes[:'bank_code']
|
83
|
+
end
|
84
|
+
|
85
|
+
if attributes.key?(:'bank_account')
|
86
|
+
self.bank_account = attributes[:'bank_account']
|
87
|
+
end
|
88
|
+
|
89
|
+
if attributes.key?(:'country')
|
90
|
+
self.country = attributes[:'country']
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
95
|
+
# @return Array for valid properties with the reasons
|
96
|
+
def list_invalid_properties
|
97
|
+
invalid_properties = Array.new
|
98
|
+
if @first_name.nil?
|
99
|
+
invalid_properties.push('invalid value for "first_name", first_name cannot be nil.')
|
100
|
+
end
|
101
|
+
|
102
|
+
if @last_name.nil?
|
103
|
+
invalid_properties.push('invalid value for "last_name", last_name cannot be nil.')
|
104
|
+
end
|
105
|
+
|
106
|
+
if @phone_number.nil?
|
107
|
+
invalid_properties.push('invalid value for "phone_number", phone_number cannot be nil.')
|
108
|
+
end
|
109
|
+
|
110
|
+
if @bank_code.nil?
|
111
|
+
invalid_properties.push('invalid value for "bank_code", bank_code cannot be nil.')
|
112
|
+
end
|
113
|
+
|
114
|
+
if @bank_account.nil?
|
115
|
+
invalid_properties.push('invalid value for "bank_account", bank_account cannot be nil.')
|
116
|
+
end
|
117
|
+
|
118
|
+
if @country.nil?
|
119
|
+
invalid_properties.push('invalid value for "country", country cannot be nil.')
|
120
|
+
end
|
121
|
+
|
122
|
+
invalid_properties
|
123
|
+
end
|
124
|
+
|
125
|
+
# Check to see if the all the properties in the model are valid
|
126
|
+
# @return true if the model is valid
|
127
|
+
def valid?
|
128
|
+
return false if @first_name.nil?
|
129
|
+
return false if @last_name.nil?
|
130
|
+
return false if @phone_number.nil?
|
131
|
+
return false if @bank_code.nil?
|
132
|
+
return false if @bank_account.nil?
|
133
|
+
return false if @country.nil?
|
134
|
+
true
|
135
|
+
end
|
136
|
+
|
137
|
+
# Checks equality by comparing each attribute.
|
138
|
+
# @param [Object] Object to be compared
|
139
|
+
def ==(o)
|
140
|
+
return true if self.equal?(o)
|
141
|
+
self.class == o.class &&
|
142
|
+
first_name == o.first_name &&
|
143
|
+
last_name == o.last_name &&
|
144
|
+
phone_number == o.phone_number &&
|
145
|
+
bank_code == o.bank_code &&
|
146
|
+
bank_account == o.bank_account &&
|
147
|
+
country == o.country
|
148
|
+
end
|
149
|
+
|
150
|
+
# @see the `==` method
|
151
|
+
# @param [Object] Object to be compared
|
152
|
+
def eql?(o)
|
153
|
+
self == o
|
154
|
+
end
|
155
|
+
|
156
|
+
# Calculates hash code according to all attributes.
|
157
|
+
# @return [Integer] Hash code
|
158
|
+
def hash
|
159
|
+
[first_name, last_name, phone_number, bank_code, bank_account, country].hash
|
160
|
+
end
|
161
|
+
|
162
|
+
require 'active_support/core_ext/hash'
|
163
|
+
require 'active_support/hash_with_indifferent_access.rb'
|
164
|
+
# Builds the object from hash
|
165
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
166
|
+
# @return [Object] Returns the model itself
|
167
|
+
def build_from_hash(attributes)
|
168
|
+
return nil unless attributes.is_a?(Hash)
|
169
|
+
self.class.openapi_types.each_pair do |key, type|
|
170
|
+
if type =~ /\AArray<(.*)>/i
|
171
|
+
# check to ensure the input is an array given that the the attribute
|
172
|
+
# is documented as an array but the input is not
|
173
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
174
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
175
|
+
end
|
176
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
177
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
178
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
179
|
+
end
|
180
|
+
|
181
|
+
self
|
182
|
+
end
|
183
|
+
|
184
|
+
# Deserializes the data based on type
|
185
|
+
# @param string type Data type
|
186
|
+
# @param string value Value to be deserialized
|
187
|
+
# @return [Object] Deserialized data
|
188
|
+
def _deserialize(type, value)
|
189
|
+
case type.to_sym
|
190
|
+
when :DateTime
|
191
|
+
DateTime.parse(value)
|
192
|
+
when :Date
|
193
|
+
Date.parse(value)
|
194
|
+
when :String
|
195
|
+
value.to_s
|
196
|
+
when :Integer
|
197
|
+
value.to_i
|
198
|
+
when :Float
|
199
|
+
value.to_f
|
200
|
+
when :Boolean
|
201
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
202
|
+
true
|
203
|
+
else
|
204
|
+
false
|
205
|
+
end
|
206
|
+
when :Object
|
207
|
+
# generic object (usually a Hash), return directly
|
208
|
+
value
|
209
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
210
|
+
inner_type = Regexp.last_match[:inner_type]
|
211
|
+
value.map { |v| _deserialize(inner_type, v) }
|
212
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
213
|
+
k_type = Regexp.last_match[:k_type]
|
214
|
+
v_type = Regexp.last_match[:v_type]
|
215
|
+
{}.tap do |hash|
|
216
|
+
value.each do |k, v|
|
217
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
218
|
+
end
|
219
|
+
end
|
220
|
+
else # model
|
221
|
+
temp_model = TransferZero.const_get(type).new
|
222
|
+
temp_model.build_from_hash(value)
|
223
|
+
end
|
224
|
+
end
|
225
|
+
|
226
|
+
# Returns the string representation of the object
|
227
|
+
# @return [String] String presentation of the object
|
228
|
+
def to_s
|
229
|
+
to_hash.to_s
|
230
|
+
end
|
231
|
+
|
232
|
+
# to_body is an alias to to_hash (backward compatibility)
|
233
|
+
# @return [Hash] Returns the object in the form of hash
|
234
|
+
def to_body
|
235
|
+
to_hash
|
236
|
+
end
|
237
|
+
|
238
|
+
# Returns the object in the form of hash
|
239
|
+
# @return [Hash] Returns the object in the form of hash
|
240
|
+
def to_hash
|
241
|
+
hash = {}
|
242
|
+
self.class.attribute_map.each_pair do |attr, param|
|
243
|
+
value = self.send(attr)
|
244
|
+
next if value.nil?
|
245
|
+
hash[param] = _to_hash(value)
|
246
|
+
end
|
247
|
+
::ActiveSupport::HashWithIndifferentAccess.new(hash)
|
248
|
+
end
|
249
|
+
|
250
|
+
def [](key)
|
251
|
+
to_hash[key]
|
252
|
+
end
|
253
|
+
|
254
|
+
def dig(*args)
|
255
|
+
to_hash.dig(*args)
|
256
|
+
end
|
257
|
+
|
258
|
+
# Outputs non-array value in the form of hash
|
259
|
+
# For object, use to_hash. Otherwise, just return the value
|
260
|
+
# @param [Object] value Any valid value
|
261
|
+
# @return [Hash] Returns the value in the form of hash
|
262
|
+
def _to_hash(value)
|
263
|
+
if value.is_a?(Array)
|
264
|
+
value.compact.map { |v| _to_hash(v) }
|
265
|
+
elsif value.is_a?(Hash)
|
266
|
+
{}.tap do |hash|
|
267
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
268
|
+
end
|
269
|
+
elsif value.respond_to? :to_hash
|
270
|
+
value.to_hash
|
271
|
+
else
|
272
|
+
value
|
273
|
+
end
|
274
|
+
end
|
275
|
+
|
276
|
+
end
|
277
|
+
|
278
|
+
end
|
@@ -13,7 +13,7 @@ OpenAPI Generator version: 4.0.0-beta3
|
|
13
13
|
require 'date'
|
14
14
|
|
15
15
|
module TransferZero
|
16
|
-
# ```JSON \"details\": { \"first_name\": \"First\", \"last_name\": \"Last\", \"phone_number\": \"221774044436\", // local or international format \"cash_provider\": \"wizall\" // Optional; Values: \"
|
16
|
+
# ```JSON \"details\": { \"first_name\": \"First\", \"last_name\": \"Last\", \"phone_number\": \"221774044436\", // local or international format \"cash_provider\": \"wizall\" // Optional; Values: \"wizall\"; Default value is \"wizall\"; \"country\": \"SN\" // Optional; Values: \"CI\", \"ML\" or \"SN\"; Default value is \"SN\"; } ``` Please note all senders trying to create Wizall cash pickup requests must have `identity_type` and `identity_number` present. The fields above are generally considered optional for senders for other payment corridors. If you wish to use an existing sender who has some of these fields missing you can provide them alongside the `id` or `external_id` field in the sender details. For example - ```JSON { \"transaction\": { \"sender\": { \"external_id\": \"<id of sender>\", \"identity_type\": \"ID\", \"identity_number\": \"AB12345678\", (...) }, (...) } } ```
|
17
17
|
class PayoutMethodDetailsXOFCash
|
18
18
|
attr_accessor :first_name
|
19
19
|
|
@@ -13,7 +13,7 @@ OpenAPI Generator version: 4.0.0-beta3
|
|
13
13
|
require 'date'
|
14
14
|
|
15
15
|
module TransferZero
|
16
|
-
# ```JSON \"details\": { \"first_name\": \"First\", \"last_name\": \"Last\", \"phone_number\": \"774044436\" # local or international Senegalese format \"mobile_provider\": \"orange\", # \"orange\" or \"tigo\" } ```
|
16
|
+
# ```JSON \"details\": { \"first_name\": \"First\", \"last_name\": \"Last\", \"phone_number\": \"774044436\", # local or international Senegalese or Ivory Coast format \"mobile_provider\": \"orange\", # \"orange\" or \"tigo\" for Senegal; \"orange\", \"mtn\" or \"moov\" for Ivory Coast \"country\" # Optional; Values: \"SN\" for Senegal or \"CI\" for Ivory Coast; Default value is \"SN\" } ```
|
17
17
|
class PayoutMethodDetailsXOFMobile
|
18
18
|
attr_accessor :first_name
|
19
19
|
|
@@ -23,13 +23,16 @@ class PayoutMethodDetailsXOFMobile
|
|
23
23
|
|
24
24
|
attr_accessor :mobile_provider
|
25
25
|
|
26
|
+
attr_accessor :country
|
27
|
+
|
26
28
|
# Attribute mapping from ruby-style variable name to JSON key.
|
27
29
|
def self.attribute_map
|
28
30
|
{
|
29
31
|
:'first_name' => :'first_name',
|
30
32
|
:'last_name' => :'last_name',
|
31
33
|
:'phone_number' => :'phone_number',
|
32
|
-
:'mobile_provider' => :'mobile_provider'
|
34
|
+
:'mobile_provider' => :'mobile_provider',
|
35
|
+
:'country' => :'country'
|
33
36
|
}
|
34
37
|
end
|
35
38
|
|
@@ -39,7 +42,8 @@ class PayoutMethodDetailsXOFMobile
|
|
39
42
|
:'first_name' => :'String',
|
40
43
|
:'last_name' => :'String',
|
41
44
|
:'phone_number' => :'String',
|
42
|
-
:'mobile_provider' => :'PayoutMethodMobileProviderEnum'
|
45
|
+
:'mobile_provider' => :'PayoutMethodMobileProviderEnum',
|
46
|
+
:'country' => :'PayoutMethodCountryEnum'
|
43
47
|
}
|
44
48
|
end
|
45
49
|
|
@@ -73,6 +77,10 @@ class PayoutMethodDetailsXOFMobile
|
|
73
77
|
if attributes.key?(:'mobile_provider')
|
74
78
|
self.mobile_provider = attributes[:'mobile_provider']
|
75
79
|
end
|
80
|
+
|
81
|
+
if attributes.key?(:'country')
|
82
|
+
self.country = attributes[:'country']
|
83
|
+
end
|
76
84
|
end
|
77
85
|
|
78
86
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -116,7 +124,8 @@ class PayoutMethodDetailsXOFMobile
|
|
116
124
|
first_name == o.first_name &&
|
117
125
|
last_name == o.last_name &&
|
118
126
|
phone_number == o.phone_number &&
|
119
|
-
mobile_provider == o.mobile_provider
|
127
|
+
mobile_provider == o.mobile_provider &&
|
128
|
+
country == o.country
|
120
129
|
end
|
121
130
|
|
122
131
|
# @see the `==` method
|
@@ -128,7 +137,7 @@ class PayoutMethodDetailsXOFMobile
|
|
128
137
|
# Calculates hash code according to all attributes.
|
129
138
|
# @return [Integer] Hash code
|
130
139
|
def hash
|
131
|
-
[first_name, last_name, phone_number, mobile_provider].hash
|
140
|
+
[first_name, last_name, phone_number, mobile_provider, country].hash
|
132
141
|
end
|
133
142
|
|
134
143
|
require 'active_support/core_ext/hash'
|
@@ -13,7 +13,7 @@ OpenAPI Generator version: 4.0.0-beta3
|
|
13
13
|
require 'date'
|
14
14
|
|
15
15
|
module TransferZero
|
16
|
-
# ```JSON \"details\": { \"first_name\": \"First\", \"last_name\": \"Last\", \"street\": \"Main Street\", \"postal_code\": \"AB0001\", \"city\": \"Cape Town\", \"email\": \"recipient@email.com\", \"bank_code\": \"334810\", \"bank_account\": \"12345678\", \"phone_number\": \"+27119785313\", \"transfer_reason_code\": \"185\" } ``` See [ZAR Bank](https://docs.transferzero.com/docs/payout-details/#zarbank) documentation for the bank_code and transfer_reason_code lists
|
16
|
+
# ```JSON \"details\": { \"first_name\": \"First\", // Mandatory for personal payouts; \"last_name\": \"Last\", // Mandatory for personal payouts; \"name\" \"First Ltd\", // Mandatory for business payouts; \"contact_first_name\" \"Business\", // Mandatory for business payouts; \"contact_last_name\" \"Contact\", // Mandatory for business payouts; \"street\": \"Main Street\", \"postal_code\": \"AB0001\", \"city\": \"Cape Town\", \"email\": \"recipient@email.com\", \"bank_code\": \"334810\", \"bank_account\": \"12345678\", \"phone_number\": \"+27119785313\", \"transfer_reason_code\": \"185\", \"legal_entity_type\": \"sole_proprietorship\", // Optional; Default value is \"person\"; Mandatory for business payouts; \"nature_of_business\": \"Mining\", // Optional for business payouts; \"registration_number\": \"17364BGC\" // Optional for business payouts; } ``` See [ZAR Bank](https://docs.transferzero.com/docs/payout-details/#zarbank) documentation for the bank_code and transfer_reason_code lists
|
17
17
|
class PayoutMethodDetailsZARBank
|
18
18
|
attr_accessor :first_name
|
19
19
|
|
@@ -35,6 +35,18 @@ class PayoutMethodDetailsZARBank
|
|
35
35
|
|
36
36
|
attr_accessor :transfer_reason_code
|
37
37
|
|
38
|
+
attr_accessor :name
|
39
|
+
|
40
|
+
attr_accessor :contact_first_name
|
41
|
+
|
42
|
+
attr_accessor :contact_last_name
|
43
|
+
|
44
|
+
attr_accessor :registration_number
|
45
|
+
|
46
|
+
attr_accessor :nature_of_business
|
47
|
+
|
48
|
+
attr_accessor :legal_entity_type
|
49
|
+
|
38
50
|
# Attribute mapping from ruby-style variable name to JSON key.
|
39
51
|
def self.attribute_map
|
40
52
|
{
|
@@ -47,7 +59,13 @@ class PayoutMethodDetailsZARBank
|
|
47
59
|
:'bank_code' => :'bank_code',
|
48
60
|
:'bank_account' => :'bank_account',
|
49
61
|
:'phone_number' => :'phone_number',
|
50
|
-
:'transfer_reason_code' => :'transfer_reason_code'
|
62
|
+
:'transfer_reason_code' => :'transfer_reason_code',
|
63
|
+
:'name' => :'name',
|
64
|
+
:'contact_first_name' => :'contact_first_name',
|
65
|
+
:'contact_last_name' => :'contact_last_name',
|
66
|
+
:'registration_number' => :'registration_number',
|
67
|
+
:'nature_of_business' => :'nature_of_business',
|
68
|
+
:'legal_entity_type' => :'legal_entity_type'
|
51
69
|
}
|
52
70
|
end
|
53
71
|
|
@@ -63,7 +81,13 @@ class PayoutMethodDetailsZARBank
|
|
63
81
|
:'bank_code' => :'String',
|
64
82
|
:'bank_account' => :'String',
|
65
83
|
:'phone_number' => :'String',
|
66
|
-
:'transfer_reason_code' => :'String'
|
84
|
+
:'transfer_reason_code' => :'String',
|
85
|
+
:'name' => :'String',
|
86
|
+
:'contact_first_name' => :'String',
|
87
|
+
:'contact_last_name' => :'String',
|
88
|
+
:'registration_number' => :'String',
|
89
|
+
:'nature_of_business' => :'PayoutMethodNatureOfBusinessEnum',
|
90
|
+
:'legal_entity_type' => :'PayoutMethodLegalEntityTypeEnum'
|
67
91
|
}
|
68
92
|
end
|
69
93
|
|
@@ -121,6 +145,30 @@ class PayoutMethodDetailsZARBank
|
|
121
145
|
if attributes.key?(:'transfer_reason_code')
|
122
146
|
self.transfer_reason_code = attributes[:'transfer_reason_code']
|
123
147
|
end
|
148
|
+
|
149
|
+
if attributes.key?(:'name')
|
150
|
+
self.name = attributes[:'name']
|
151
|
+
end
|
152
|
+
|
153
|
+
if attributes.key?(:'contact_first_name')
|
154
|
+
self.contact_first_name = attributes[:'contact_first_name']
|
155
|
+
end
|
156
|
+
|
157
|
+
if attributes.key?(:'contact_last_name')
|
158
|
+
self.contact_last_name = attributes[:'contact_last_name']
|
159
|
+
end
|
160
|
+
|
161
|
+
if attributes.key?(:'registration_number')
|
162
|
+
self.registration_number = attributes[:'registration_number']
|
163
|
+
end
|
164
|
+
|
165
|
+
if attributes.key?(:'nature_of_business')
|
166
|
+
self.nature_of_business = attributes[:'nature_of_business']
|
167
|
+
end
|
168
|
+
|
169
|
+
if attributes.key?(:'legal_entity_type')
|
170
|
+
self.legal_entity_type = attributes[:'legal_entity_type']
|
171
|
+
end
|
124
172
|
end
|
125
173
|
|
126
174
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -190,7 +238,13 @@ class PayoutMethodDetailsZARBank
|
|
190
238
|
bank_code == o.bank_code &&
|
191
239
|
bank_account == o.bank_account &&
|
192
240
|
phone_number == o.phone_number &&
|
193
|
-
transfer_reason_code == o.transfer_reason_code
|
241
|
+
transfer_reason_code == o.transfer_reason_code &&
|
242
|
+
name == o.name &&
|
243
|
+
contact_first_name == o.contact_first_name &&
|
244
|
+
contact_last_name == o.contact_last_name &&
|
245
|
+
registration_number == o.registration_number &&
|
246
|
+
nature_of_business == o.nature_of_business &&
|
247
|
+
legal_entity_type == o.legal_entity_type
|
194
248
|
end
|
195
249
|
|
196
250
|
# @see the `==` method
|
@@ -202,7 +256,7 @@ class PayoutMethodDetailsZARBank
|
|
202
256
|
# Calculates hash code according to all attributes.
|
203
257
|
# @return [Integer] Hash code
|
204
258
|
def hash
|
205
|
-
[first_name, last_name, street, postal_code, city, email, bank_code, bank_account, phone_number, transfer_reason_code].hash
|
259
|
+
[first_name, last_name, street, postal_code, city, email, bank_code, bank_account, phone_number, transfer_reason_code, name, contact_first_name, contact_last_name, registration_number, nature_of_business, legal_entity_type].hash
|
206
260
|
end
|
207
261
|
|
208
262
|
require 'active_support/core_ext/hash'
|