-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathbalancePlatform.rb
More file actions
124 lines (99 loc) · 4.19 KB
/
balancePlatform.rb
File metadata and controls
124 lines (99 loc) · 4.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
require_relative 'balancePlatform/account_holders_api'
require_relative 'balancePlatform/authorized_card_users_api'
require_relative 'balancePlatform/balance_accounts_api'
require_relative 'balancePlatform/balances_api'
require_relative 'balancePlatform/bank_account_validation_api'
require_relative 'balancePlatform/card_orders_api'
require_relative 'balancePlatform/direct_debit_mandates_api'
require_relative 'balancePlatform/grant_accounts_api'
require_relative 'balancePlatform/grant_offers_api'
require_relative 'balancePlatform/manage_card_pin_api'
require_relative 'balancePlatform/manage_sca_devices_api'
require_relative 'balancePlatform/network_tokens_api'
require_relative 'balancePlatform/payment_instrument_groups_api'
require_relative 'balancePlatform/payment_instruments_api'
require_relative 'balancePlatform/platform_api'
require_relative 'balancePlatform/sca_association_management_api'
require_relative 'balancePlatform/sca_device_management_api'
require_relative 'balancePlatform/transaction_rules_api'
require_relative 'balancePlatform/transfer_limits_balance_account_level_api'
require_relative 'balancePlatform/transfer_limits_balance_platform_level_api'
require_relative 'balancePlatform/transfer_routes_api'
module Adyen
# NOTE: This class is auto generated by OpenAPI Generator
# Ref: https://openapi-generator.tech
#
# Do not edit the class manually.
class BalancePlatform
attr_accessor :service, :version
DEFAULT_VERSION = 2
def initialize(client, version = DEFAULT_VERSION)
@service = 'BalancePlatform'
@client = client
@version = version
end
def account_holders_api
@account_holders_api ||= Adyen::AccountHoldersApi.new(@client, @version)
end
def authorized_card_users_api
@authorized_card_users_api ||= Adyen::AuthorizedCardUsersApi.new(@client, @version)
end
def balance_accounts_api
@balance_accounts_api ||= Adyen::BalanceAccountsApi.new(@client, @version)
end
def balances_api
@balances_api ||= Adyen::BalancesApi.new(@client, @version)
end
def bank_account_validation_api
@bank_account_validation_api ||= Adyen::BankAccountValidationApi.new(@client, @version)
end
def card_orders_api
@card_orders_api ||= Adyen::CardOrdersApi.new(@client, @version)
end
def direct_debit_mandates_api
@direct_debit_mandates_api ||= Adyen::DirectDebitMandatesApi.new(@client, @version)
end
def grant_accounts_api
@grant_accounts_api ||= Adyen::GrantAccountsApi.new(@client, @version)
end
def grant_offers_api
@grant_offers_api ||= Adyen::GrantOffersApi.new(@client, @version)
end
def manage_card_pin_api
@manage_card_pin_api ||= Adyen::ManageCardPINApi.new(@client, @version)
end
def manage_sca_devices_api
@manage_sca_devices_api ||= Adyen::ManageSCADevicesApi.new(@client, @version)
end
def network_tokens_api
@network_tokens_api ||= Adyen::NetworkTokensApi.new(@client, @version)
end
def payment_instrument_groups_api
@payment_instrument_groups_api ||= Adyen::PaymentInstrumentGroupsApi.new(@client, @version)
end
def payment_instruments_api
@payment_instruments_api ||= Adyen::PaymentInstrumentsApi.new(@client, @version)
end
def platform_api
@platform_api ||= Adyen::PlatformApi.new(@client, @version)
end
def sca_association_management_api
@sca_association_management_api ||= Adyen::SCAAssociationManagementApi.new(@client, @version)
end
def sca_device_management_api
@sca_device_management_api ||= Adyen::SCADeviceManagementApi.new(@client, @version)
end
def transaction_rules_api
@transaction_rules_api ||= Adyen::TransactionRulesApi.new(@client, @version)
end
def transfer_limits_balance_account_level_api
@transfer_limits_balance_account_level_api ||= Adyen::TransferLimitsBalanceAccountLevelApi.new(@client, @version)
end
def transfer_limits_balance_platform_level_api
@transfer_limits_balance_platform_level_api ||= Adyen::TransferLimitsBalancePlatformLevelApi.new(@client, @version)
end
def transfer_routes_api
@transfer_routes_api ||= Adyen::TransferRoutesApi.new(@client, @version)
end
end
end