transferzero-sdk 1.12.2 → 1.14.2
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 +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
@@ -0,0 +1,37 @@
|
|
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
|
+
class PayoutMethodLegalEntityTypeEnum
|
17
|
+
|
18
|
+
PERSON = "person".freeze
|
19
|
+
SOLE_PROPRIETORSHIP = "sole_proprietorship".freeze
|
20
|
+
PRIVATELY_OWNED_COMPANY = "privately_owned_company".freeze
|
21
|
+
PUBLICLY_OWNED_COMPANY = "publicly_owned_company".freeze
|
22
|
+
GOVERNMENT_OWNED_ENTITY = "government_owned_entity".freeze
|
23
|
+
PARTNERSHIP = "partnership".freeze
|
24
|
+
GO = "go".freeze
|
25
|
+
FINANCIAL_INSTITUTION = "financial_institution".freeze
|
26
|
+
|
27
|
+
# Builds the enum from string
|
28
|
+
# @param [String] The enum value in the form of the string
|
29
|
+
# @return [String] The enum value
|
30
|
+
def build_from_hash(value)
|
31
|
+
constantValues = PayoutMethodLegalEntityTypeEnum.constants.select { |c| PayoutMethodLegalEntityTypeEnum::const_get(c) == value }
|
32
|
+
raise "Invalid ENUM value #{value} for class #PayoutMethodLegalEntityTypeEnum" if constantValues.empty? && !value.empty?
|
33
|
+
value
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
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 'date'
|
14
|
+
|
15
|
+
module TransferZero
|
16
|
+
class PayoutMethodNatureOfBusinessEnum
|
17
|
+
|
18
|
+
PERSONAL = "personal".freeze
|
19
|
+
AGRICULTURE_AND_HUNTING = "agriculture_and_hunting".freeze
|
20
|
+
FORESTRY = "forestry".freeze
|
21
|
+
FISHING = "fishing".freeze
|
22
|
+
AGRICULTURAL_BY_PRODUCTS = "agricultural_by_products".freeze
|
23
|
+
COAL_MINING = "coal_mining".freeze
|
24
|
+
OIL_MINING = "oil_mining".freeze
|
25
|
+
IRON_ORE_MINING = "iron_ore_mining".freeze
|
26
|
+
OTHER_METAL_AND_DIAMOND_MINING = "other_metal_and_diamond_mining".freeze
|
27
|
+
OTHER_MINERAL_MINING = "other_mineral_mining".freeze
|
28
|
+
MANUFACTURING_OF_FOOD_DRINK_TOBACCO = "manufacturing_of_food_drink_tobacco".freeze
|
29
|
+
MANUFACTURING_OF_TEXTILES_LEATHER_FUR_FURNITURE = "manufacturing_of_textiles_leather_fur_furniture".freeze
|
30
|
+
MANUFACTURE_OF_WOODEN_PRODUCTS_FURNITURE = "manufacture_of_wooden_products_furniture".freeze
|
31
|
+
MANUFACTURE_OF_PAPER_PULP_ALLIED_PRODUCTS = "manufacture_of_paper_pulp_allied_products".freeze
|
32
|
+
MANUFACTURE_OF_CHEMICALS_MEDICAL_PETROLEUM_RUBBER_PLASTIC_PRODUCTS = "manufacture_of_chemicals_medical_petroleum_rubber_plastic_products".freeze
|
33
|
+
MANUFACTURE_OF_POTTERY_CHINA_GLASS_STONE = "manufacture_of_pottery_china_glass_stone".freeze
|
34
|
+
MANUFACTURE_OF_IRON_STEEL_NON_FERROUS_METALS_BASIC_INDUSTRIES = "manufacture_of_iron_steel_non_ferrous_metals_basic_industries".freeze
|
35
|
+
MANUFACTURE_OF_METAL_PRODUCTS_ELECTRICAL_AND_SCIENTIFIC_ENGINEERING = "manufacture_of_metal_products_electrical_and_scientific_engineering".freeze
|
36
|
+
MANUFACTURE_OF_JEWELRY_MUSICAL_INSTRUMENTS_TOYS = "manufacture_of_jewelry_musical_instruments_toys".freeze
|
37
|
+
ELECTRICITY_GAS_AND_WATER = "electricity_gas_and_water".freeze
|
38
|
+
CONSTRUCTION = "construction".freeze
|
39
|
+
WHOLESALE_TRADE = "wholesale_trade".freeze
|
40
|
+
RETAIL_TRADE = "retail_trade".freeze
|
41
|
+
CATERING_INCL_HOTELS = "catering_incl_hotels".freeze
|
42
|
+
TRANSPORT_STORAGE = "transport_storage".freeze
|
43
|
+
COMMUNICATIONS = "communications".freeze
|
44
|
+
FINANCE_AND_HOLDING_COMPANIES = "finance_and_holding_companies".freeze
|
45
|
+
INSURANCE = "insurance".freeze
|
46
|
+
BUSINESS_SERVICES = "business_services".freeze
|
47
|
+
REAL_ESTATE_DEVELOPMENT_INVESTMENT = "real_estate_development_investment".freeze
|
48
|
+
CENTRAL_STATE_GOVERNMENTS = "central_state_governments".freeze
|
49
|
+
COMMUNITY_SERVICES_DEFENCE_POLICE_PRISONS_ETC = "community_services_defence_police_prisons_etc".freeze
|
50
|
+
SOCIAL_SERVICES_EDUCATION_HEALTH_CARE = "social_services_education_health_care".freeze
|
51
|
+
PERSONAL_SERVICES_LEISURE_SERVICES = "personal_services_leisure_services".freeze
|
52
|
+
PERSONAL_SERVICES_DOMESTIC_LAUNDRY_REPAIRS = "personal_services_domestic_laundry_repairs".freeze
|
53
|
+
PERSONAL_SERVICES_EMBASSIES_INTERNATIONAL_ORGANISATIONS = "personal_services_embassies_international_organisations".freeze
|
54
|
+
|
55
|
+
# Builds the enum from string
|
56
|
+
# @param [String] The enum value in the form of the string
|
57
|
+
# @return [String] The enum value
|
58
|
+
def build_from_hash(value)
|
59
|
+
constantValues = PayoutMethodNatureOfBusinessEnum.constants.select { |c| PayoutMethodNatureOfBusinessEnum::const_get(c) == value }
|
60
|
+
raise "Invalid ENUM value #{value} for class #PayoutMethodNatureOfBusinessEnum" if constantValues.empty? && !value.empty?
|
61
|
+
value
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
=begin
|
2
|
+
#TransferZero API
|
3
|
+
|
4
|
+
#Reference documentation for the TransferZero API V1
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.0.0-beta3
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for TransferZero::PayoutMethodCountryEnumUSDBank
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PayoutMethodCountryEnumUSDBank' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = TransferZero::PayoutMethodCountryEnumUSDBank.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PayoutMethodCountryEnumUSDBank' do
|
31
|
+
it 'should create an instance of PayoutMethodCountryEnumUSDBank' do
|
32
|
+
expect(@instance).to be_instance_of(TransferZero::PayoutMethodCountryEnumUSDBank)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
=begin
|
2
|
+
#TransferZero API
|
3
|
+
|
4
|
+
#Reference documentation for the TransferZero API V1
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.0.0-beta3
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for TransferZero::PayoutMethodDetailsGHSCash
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PayoutMethodDetailsGHSCash' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = TransferZero::PayoutMethodDetailsGHSCash.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PayoutMethodDetailsGHSCash' do
|
31
|
+
it 'should create an instance of PayoutMethodDetailsGHSCash' do
|
32
|
+
expect(@instance).to be_instance_of(TransferZero::PayoutMethodDetailsGHSCash)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "first_name"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "last_name"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "phone_number"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
@@ -0,0 +1,71 @@
|
|
1
|
+
=begin
|
2
|
+
#TransferZero API
|
3
|
+
|
4
|
+
#Reference documentation for the TransferZero API V1
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.0.0-beta3
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for TransferZero::PayoutMethodDetailsUSDBank
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PayoutMethodDetailsUSDBank' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = TransferZero::PayoutMethodDetailsUSDBank.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PayoutMethodDetailsUSDBank' do
|
31
|
+
it 'should create an instance of PayoutMethodDetailsUSDBank' do
|
32
|
+
expect(@instance).to be_instance_of(TransferZero::PayoutMethodDetailsUSDBank)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "first_name"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "last_name"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "phone_number"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
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 "bank_account"' 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 "country"' 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,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::PayoutMethodLegalEntityTypeEnum
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PayoutMethodLegalEntityTypeEnum' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = TransferZero::PayoutMethodLegalEntityTypeEnum.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PayoutMethodLegalEntityTypeEnum' do
|
31
|
+
it 'should create an instance of PayoutMethodLegalEntityTypeEnum' do
|
32
|
+
expect(@instance).to be_instance_of(TransferZero::PayoutMethodLegalEntityTypeEnum)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
=begin
|
2
|
+
#TransferZero API
|
3
|
+
|
4
|
+
#Reference documentation for the TransferZero API V1
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.0.0-beta3
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for TransferZero::PayoutMethodNatureOfBusinessEnum
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PayoutMethodNatureOfBusinessEnum' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = TransferZero::PayoutMethodNatureOfBusinessEnum.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PayoutMethodNatureOfBusinessEnum' do
|
31
|
+
it 'should create an instance of PayoutMethodNatureOfBusinessEnum' do
|
32
|
+
expect(@instance).to be_instance_of(TransferZero::PayoutMethodNatureOfBusinessEnum)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
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.14.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- TransferZero
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-07-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -62,22 +62,22 @@ dependencies:
|
|
62
62
|
name: rspec
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|
64
64
|
requirements:
|
65
|
-
- - "~>"
|
66
|
-
- !ruby/object:Gem::Version
|
67
|
-
version: '3.6'
|
68
65
|
- - ">="
|
69
66
|
- !ruby/object:Gem::Version
|
70
67
|
version: 3.6.0
|
68
|
+
- - "~>"
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: '3.6'
|
71
71
|
type: :development
|
72
72
|
prerelease: false
|
73
73
|
version_requirements: !ruby/object:Gem::Requirement
|
74
74
|
requirements:
|
75
|
-
- - "~>"
|
76
|
-
- !ruby/object:Gem::Version
|
77
|
-
version: '3.6'
|
78
75
|
- - ">="
|
79
76
|
- !ruby/object:Gem::Version
|
80
77
|
version: 3.6.0
|
78
|
+
- - "~>"
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '3.6'
|
81
81
|
- !ruby/object:Gem::Dependency
|
82
82
|
name: vcr
|
83
83
|
requirement: !ruby/object:Gem::Requirement
|
@@ -263,23 +263,28 @@ files:
|
|
263
263
|
- docs/PayoutMethodBankAccountTypeEnum.md
|
264
264
|
- docs/PayoutMethodCashProviderEnum.md
|
265
265
|
- docs/PayoutMethodCountryEnum.md
|
266
|
+
- docs/PayoutMethodCountryEnumUSDBank.md
|
266
267
|
- docs/PayoutMethodDetails.md
|
267
268
|
- docs/PayoutMethodDetailsBTC.md
|
268
269
|
- docs/PayoutMethodDetailsBalance.md
|
269
270
|
- docs/PayoutMethodDetailsGBPBank.md
|
270
271
|
- docs/PayoutMethodDetailsGHSBank.md
|
272
|
+
- docs/PayoutMethodDetailsGHSCash.md
|
271
273
|
- docs/PayoutMethodDetailsIBAN.md
|
272
274
|
- docs/PayoutMethodDetailsMADCash.md
|
273
275
|
- docs/PayoutMethodDetailsMobile.md
|
274
276
|
- docs/PayoutMethodDetailsNGNBank.md
|
277
|
+
- docs/PayoutMethodDetailsUSDBank.md
|
275
278
|
- docs/PayoutMethodDetailsXOFBank.md
|
276
279
|
- docs/PayoutMethodDetailsXOFCash.md
|
277
280
|
- docs/PayoutMethodDetailsXOFMobile.md
|
278
281
|
- docs/PayoutMethodDetailsZARBank.md
|
279
282
|
- docs/PayoutMethodGenderEnum.md
|
280
283
|
- docs/PayoutMethodIdentityCardTypeEnum.md
|
284
|
+
- docs/PayoutMethodLegalEntityTypeEnum.md
|
281
285
|
- docs/PayoutMethodListResponse.md
|
282
286
|
- docs/PayoutMethodMobileProviderEnum.md
|
287
|
+
- docs/PayoutMethodNatureOfBusinessEnum.md
|
283
288
|
- docs/PayoutMethodRequest.md
|
284
289
|
- docs/PayoutMethodResponse.md
|
285
290
|
- docs/PayoutMethodWebhook.md
|
@@ -393,23 +398,28 @@ files:
|
|
393
398
|
- lib/transferzero-sdk/models/payout_method_bank_account_type_enum.rb
|
394
399
|
- lib/transferzero-sdk/models/payout_method_cash_provider_enum.rb
|
395
400
|
- lib/transferzero-sdk/models/payout_method_country_enum.rb
|
401
|
+
- lib/transferzero-sdk/models/payout_method_country_enum_usd_bank.rb
|
396
402
|
- lib/transferzero-sdk/models/payout_method_details.rb
|
397
403
|
- lib/transferzero-sdk/models/payout_method_details_balance.rb
|
398
404
|
- lib/transferzero-sdk/models/payout_method_details_btc.rb
|
399
405
|
- lib/transferzero-sdk/models/payout_method_details_gbp_bank.rb
|
400
406
|
- lib/transferzero-sdk/models/payout_method_details_ghs_bank.rb
|
407
|
+
- lib/transferzero-sdk/models/payout_method_details_ghs_cash.rb
|
401
408
|
- lib/transferzero-sdk/models/payout_method_details_iban.rb
|
402
409
|
- lib/transferzero-sdk/models/payout_method_details_mad_cash.rb
|
403
410
|
- lib/transferzero-sdk/models/payout_method_details_mobile.rb
|
404
411
|
- lib/transferzero-sdk/models/payout_method_details_ngn_bank.rb
|
412
|
+
- lib/transferzero-sdk/models/payout_method_details_usd_bank.rb
|
405
413
|
- lib/transferzero-sdk/models/payout_method_details_xof_bank.rb
|
406
414
|
- lib/transferzero-sdk/models/payout_method_details_xof_cash.rb
|
407
415
|
- lib/transferzero-sdk/models/payout_method_details_xof_mobile.rb
|
408
416
|
- lib/transferzero-sdk/models/payout_method_details_zar_bank.rb
|
409
417
|
- lib/transferzero-sdk/models/payout_method_gender_enum.rb
|
410
418
|
- lib/transferzero-sdk/models/payout_method_identity_card_type_enum.rb
|
419
|
+
- lib/transferzero-sdk/models/payout_method_legal_entity_type_enum.rb
|
411
420
|
- lib/transferzero-sdk/models/payout_method_list_response.rb
|
412
421
|
- lib/transferzero-sdk/models/payout_method_mobile_provider_enum.rb
|
422
|
+
- lib/transferzero-sdk/models/payout_method_nature_of_business_enum.rb
|
413
423
|
- lib/transferzero-sdk/models/payout_method_request.rb
|
414
424
|
- lib/transferzero-sdk/models/payout_method_response.rb
|
415
425
|
- lib/transferzero-sdk/models/payout_method_webhook.rb
|
@@ -513,23 +523,28 @@ files:
|
|
513
523
|
- spec/models/payout_method_bank_account_type_enum_spec.rb
|
514
524
|
- spec/models/payout_method_cash_provider_enum_spec.rb
|
515
525
|
- spec/models/payout_method_country_enum_spec.rb
|
526
|
+
- spec/models/payout_method_country_enum_usd_bank_spec.rb
|
516
527
|
- spec/models/payout_method_details_balance_spec.rb
|
517
528
|
- spec/models/payout_method_details_btc_spec.rb
|
518
529
|
- spec/models/payout_method_details_gbp_bank_spec.rb
|
519
530
|
- spec/models/payout_method_details_ghs_bank_spec.rb
|
531
|
+
- spec/models/payout_method_details_ghs_cash_spec.rb
|
520
532
|
- spec/models/payout_method_details_iban_spec.rb
|
521
533
|
- spec/models/payout_method_details_mad_cash_spec.rb
|
522
534
|
- spec/models/payout_method_details_mobile_spec.rb
|
523
535
|
- spec/models/payout_method_details_ngn_bank_spec.rb
|
524
536
|
- spec/models/payout_method_details_spec.rb
|
537
|
+
- spec/models/payout_method_details_usd_bank_spec.rb
|
525
538
|
- spec/models/payout_method_details_xof_bank_spec.rb
|
526
539
|
- spec/models/payout_method_details_xof_cash_spec.rb
|
527
540
|
- spec/models/payout_method_details_xof_mobile_spec.rb
|
528
541
|
- spec/models/payout_method_details_zar_bank_spec.rb
|
529
542
|
- spec/models/payout_method_gender_enum_spec.rb
|
530
543
|
- spec/models/payout_method_identity_card_type_enum_spec.rb
|
544
|
+
- spec/models/payout_method_legal_entity_type_enum_spec.rb
|
531
545
|
- spec/models/payout_method_list_response_spec.rb
|
532
546
|
- spec/models/payout_method_mobile_provider_enum_spec.rb
|
547
|
+
- spec/models/payout_method_nature_of_business_enum_spec.rb
|
533
548
|
- spec/models/payout_method_request_spec.rb
|
534
549
|
- spec/models/payout_method_response_spec.rb
|
535
550
|
- spec/models/payout_method_spec.rb
|
@@ -575,13 +590,12 @@ files:
|
|
575
590
|
- spec/models/webhook_log_spec.rb
|
576
591
|
- spec/models/webhook_spec.rb
|
577
592
|
- spec/spec_helper.rb
|
578
|
-
- transferzero-sdk-1.9.0.gem
|
579
593
|
- transferzero-sdk.gemspec
|
580
594
|
homepage: https://github.com/transferzero/transferzero-sdk-ruby
|
581
595
|
licenses:
|
582
596
|
- MIT
|
583
597
|
metadata: {}
|
584
|
-
post_install_message:
|
598
|
+
post_install_message:
|
585
599
|
rdoc_options: []
|
586
600
|
require_paths:
|
587
601
|
- lib
|
@@ -596,8 +610,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
596
610
|
- !ruby/object:Gem::Version
|
597
611
|
version: '0'
|
598
612
|
requirements: []
|
599
|
-
rubygems_version: 3.
|
600
|
-
signing_key:
|
613
|
+
rubygems_version: 3.0.3
|
614
|
+
signing_key:
|
601
615
|
specification_version: 4
|
602
616
|
summary: TransferZero API Ruby Gem
|
603
617
|
test_files:
|
@@ -648,12 +662,14 @@ test_files:
|
|
648
662
|
- spec/models/document_webhook_spec.rb
|
649
663
|
- spec/models/payout_method_details_zar_bank_spec.rb
|
650
664
|
- spec/models/payout_method_gender_enum_spec.rb
|
665
|
+
- spec/models/payout_method_legal_entity_type_enum_spec.rb
|
651
666
|
- spec/models/transaction_list_response_spec.rb
|
652
667
|
- spec/models/payin_method_spec.rb
|
653
668
|
- spec/models/sender_response_spec.rb
|
654
669
|
- spec/models/payin_method_details_mobile_spec.rb
|
655
670
|
- spec/models/payout_method_details_mad_cash_spec.rb
|
656
671
|
- spec/models/account_validation_response_spec.rb
|
672
|
+
- spec/models/payout_method_country_enum_usd_bank_spec.rb
|
657
673
|
- spec/models/payout_method_details_btc_spec.rb
|
658
674
|
- spec/models/api_log_spec.rb
|
659
675
|
- spec/models/document_response_spec.rb
|
@@ -679,6 +695,7 @@ test_files:
|
|
679
695
|
- spec/models/transaction_state_spec.rb
|
680
696
|
- spec/models/payout_method_spec.rb
|
681
697
|
- spec/models/payout_method_bank_account_type_enum_spec.rb
|
698
|
+
- spec/models/payout_method_details_usd_bank_spec.rb
|
682
699
|
- spec/models/webhook_definition_list_response_spec.rb
|
683
700
|
- spec/models/debit_list_request_spec.rb
|
684
701
|
- spec/models/currency_spec.rb
|
@@ -693,6 +710,7 @@ test_files:
|
|
693
710
|
- spec/models/recipient_state_reason_details_spec.rb
|
694
711
|
- spec/models/payout_method_webhook_spec.rb
|
695
712
|
- spec/models/sender_response_meta_spec.rb
|
713
|
+
- spec/models/payout_method_nature_of_business_enum_spec.rb
|
696
714
|
- spec/models/payout_method_response_spec.rb
|
697
715
|
- spec/models/recipient_spec.rb
|
698
716
|
- spec/models/payout_method_identity_card_type_enum_spec.rb
|
@@ -714,6 +732,7 @@ test_files:
|
|
714
732
|
- spec/models/transaction_request_spec.rb
|
715
733
|
- spec/models/payout_method_details_xof_mobile_spec.rb
|
716
734
|
- spec/models/sender_list_response_spec.rb
|
735
|
+
- spec/models/payout_method_details_ghs_cash_spec.rb
|
717
736
|
- spec/models/payout_method_cash_provider_enum_spec.rb
|
718
737
|
- spec/models/field_description_spec.rb
|
719
738
|
- spec/models/currency_exchange_spec.rb
|