apimatic-ak-sdk 0.0.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 +7 -0
- data/LICENSE +28 -0
- data/README.md +190 -0
- data/bin/console +15 -0
- data/lib/akoya/api_helper.rb +10 -0
- data/lib/akoya/client.rb +117 -0
- data/lib/akoya/configuration.rb +195 -0
- data/lib/akoya/controllers/account_information_controller.rb +93 -0
- data/lib/akoya/controllers/balances_controller.rb +92 -0
- data/lib/akoya/controllers/base_controller.rb +65 -0
- data/lib/akoya/controllers/customers_controller.rb +112 -0
- data/lib/akoya/controllers/investments_controller.rb +95 -0
- data/lib/akoya/controllers/payments_controller.rb +70 -0
- data/lib/akoya/controllers/statements_controller.rb +158 -0
- data/lib/akoya/controllers/tokens_controller.rb +122 -0
- data/lib/akoya/controllers/transactions_controller.rb +108 -0
- data/lib/akoya/exceptions/api_exception.rb +21 -0
- data/lib/akoya/exceptions/error_entity_exception.rb +54 -0
- data/lib/akoya/exceptions/error_response_exception.rb +53 -0
- data/lib/akoya/http/api_response.rb +19 -0
- data/lib/akoya/http/auth/basic_auth.rb +62 -0
- data/lib/akoya/http/auth/bearer_auth.rb +53 -0
- data/lib/akoya/http/http_call_back.rb +10 -0
- data/lib/akoya/http/http_method_enum.rb +10 -0
- data/lib/akoya/http/http_request.rb +10 -0
- data/lib/akoya/http/http_response.rb +10 -0
- data/lib/akoya/http/proxy_settings.rb +22 -0
- data/lib/akoya/logging/configuration/api_logging_configuration.rb +186 -0
- data/lib/akoya/logging/sdk_logger.rb +17 -0
- data/lib/akoya/models/account.rb +86 -0
- data/lib/akoya/models/account_category.rb +50 -0
- data/lib/akoya/models/account_contact_entity.rb +132 -0
- data/lib/akoya/models/account_holder_entity.rb +178 -0
- data/lib/akoya/models/account_holder_relationship.rb +110 -0
- data/lib/akoya/models/account_holder_relationship_account_holder_entity.rb +110 -0
- data/lib/akoya/models/account_information.rb +335 -0
- data/lib/akoya/models/action.rb +48 -0
- data/lib/akoya/models/address.rb +144 -0
- data/lib/akoya/models/akoya_account_info_product.rb +88 -0
- data/lib/akoya/models/an_array_of_statements.rb +95 -0
- data/lib/akoya/models/an_investment_holding.rb +493 -0
- data/lib/akoya/models/annual_increase_type.rb +40 -0
- data/lib/akoya/models/annuity_account.rb +370 -0
- data/lib/akoya/models/annuity_account_info.rb +86 -0
- data/lib/akoya/models/annuity_balance_details.rb +87 -0
- data/lib/akoya/models/annuity_balances.rb +477 -0
- data/lib/akoya/models/annuity_product_type.rb +36 -0
- data/lib/akoya/models/annuity_value_basis.rb +36 -0
- data/lib/akoya/models/array_of_account_payment_networks.rb +85 -0
- data/lib/akoya/models/asset_class.rb +95 -0
- data/lib/akoya/models/asset_class_an_investment_holding.rb +85 -0
- data/lib/akoya/models/asset_class_asset_class.rb +56 -0
- data/lib/akoya/models/asset_class_citi_bank_investment_holdings.rb +86 -0
- data/lib/akoya/models/balance_type.rb +37 -0
- data/lib/akoya/models/balance_type_investment_balance_list.rb +36 -0
- data/lib/akoya/models/balances.rb +88 -0
- data/lib/akoya/models/base_model.rb +110 -0
- data/lib/akoya/models/business_customer_entity.rb +127 -0
- data/lib/akoya/models/business_customer_entity_account_holder_entity.rb +126 -0
- data/lib/akoya/models/business_customer_entity_customer.rb +126 -0
- data/lib/akoya/models/call_type.rb +44 -0
- data/lib/akoya/models/citi_bank_investment.rb +535 -0
- data/lib/akoya/models/citi_bank_investment_details.rb +75 -0
- data/lib/akoya/models/citi_bank_investment_holdings.rb +210 -0
- data/lib/akoya/models/compounding_period.rb +56 -0
- data/lib/akoya/models/contribution_entity.rb +266 -0
- data/lib/akoya/models/coupon_mature_frequency.rb +48 -0
- data/lib/akoya/models/currency.rb +108 -0
- data/lib/akoya/models/currency_citi_bank_investment_holdings.rb +86 -0
- data/lib/akoya/models/currency_entity.rb +109 -0
- data/lib/akoya/models/current_customer.rb +75 -0
- data/lib/akoya/models/customer.rb +164 -0
- data/lib/akoya/models/customer_current_customer.rb +164 -0
- data/lib/akoya/models/customer_name.rb +127 -0
- data/lib/akoya/models/customer_name_account_holder_entity.rb +127 -0
- data/lib/akoya/models/customer_name_customer.rb +127 -0
- data/lib/akoya/models/debit_credit_memo.rb +37 -0
- data/lib/akoya/models/debt_class.rb +44 -0
- data/lib/akoya/models/debt_security.rb +137 -0
- data/lib/akoya/models/debt_security_entity.rb +216 -0
- data/lib/akoya/models/debt_type.rb +36 -0
- data/lib/akoya/models/delivery_address.rb +153 -0
- data/lib/akoya/models/deposit_account.rb +375 -0
- data/lib/akoya/models/deposit_account_info.rb +86 -0
- data/lib/akoya/models/deposit_balance_details.rb +87 -0
- data/lib/akoya/models/deposit_balances.rb +438 -0
- data/lib/akoya/models/deposit_transaction.rb +369 -0
- data/lib/akoya/models/deposit_transaction_details.rb +87 -0
- data/lib/akoya/models/domicile.rb +85 -0
- data/lib/akoya/models/equity_grant.rb +199 -0
- data/lib/akoya/models/error_entity_account_information.rb +97 -0
- data/lib/akoya/models/error_entity_annuity_account.rb +97 -0
- data/lib/akoya/models/error_entity_annuity_balances.rb +97 -0
- data/lib/akoya/models/error_entity_citi_bank_investment.rb +97 -0
- data/lib/akoya/models/error_entity_deposit_account.rb +97 -0
- data/lib/akoya/models/error_entity_deposit_balances.rb +97 -0
- data/lib/akoya/models/error_entity_insurance_account.rb +97 -0
- data/lib/akoya/models/error_entity_insurance_balances.rb +97 -0
- data/lib/akoya/models/error_entity_investment_account.rb +97 -0
- data/lib/akoya/models/error_entity_investment_balances.rb +97 -0
- data/lib/akoya/models/error_entity_line_of_credit_balances.rb +97 -0
- data/lib/akoya/models/error_entity_loan_account.rb +97 -0
- data/lib/akoya/models/error_entity_loan_balances.rb +97 -0
- data/lib/akoya/models/error_entity_us_bank_investment.rb +97 -0
- data/lib/akoya/models/fi_asset_class.rb +95 -0
- data/lib/akoya/models/fi_asset_class_an_investment_holding.rb +85 -0
- data/lib/akoya/models/fi_attribute.rb +95 -0
- data/lib/akoya/models/fi_attribute_entity.rb +95 -0
- data/lib/akoya/models/frequency.rb +56 -0
- data/lib/akoya/models/hateoas_link.rb +105 -0
- data/lib/akoya/models/held_in_account.rb +44 -0
- data/lib/akoya/models/holding_sub_type.rb +36 -0
- data/lib/akoya/models/holding_type.rb +56 -0
- data/lib/akoya/models/income_type.rb +41 -0
- data/lib/akoya/models/industry_code.rb +85 -0
- data/lib/akoya/models/insurance_account.rb +349 -0
- data/lib/akoya/models/insurance_account_info.rb +87 -0
- data/lib/akoya/models/insurance_balance_details.rb +87 -0
- data/lib/akoya/models/insurance_balances.rb +420 -0
- data/lib/akoya/models/insurance_transaction.rb +351 -0
- data/lib/akoya/models/insurance_transaction_details.rb +87 -0
- data/lib/akoya/models/interest_rate_type.rb +36 -0
- data/lib/akoya/models/inv401_k_source.rb +56 -0
- data/lib/akoya/models/inv401_k_source_open_order_entity.rb +57 -0
- data/lib/akoya/models/inv401_k_surce.rb +56 -0
- data/lib/akoya/models/investment_account.rb +411 -0
- data/lib/akoya/models/investment_account_annuity_balance.rb +87 -0
- data/lib/akoya/models/investment_account_deposit_balance.rb +87 -0
- data/lib/akoya/models/investment_account_info.rb +87 -0
- data/lib/akoya/models/investment_account_insurance_balance.rb +87 -0
- data/lib/akoya/models/investment_account_loan_balance.rb +86 -0
- data/lib/akoya/models/investment_account_loc_balance.rb +86 -0
- data/lib/akoya/models/investment_balance_details.rb +87 -0
- data/lib/akoya/models/investment_balance_list.rb +148 -0
- data/lib/akoya/models/investment_balances.rb +525 -0
- data/lib/akoya/models/investment_details.rb +88 -0
- data/lib/akoya/models/investment_loan_entity.rb +271 -0
- data/lib/akoya/models/investment_transaction.rb +783 -0
- data/lib/akoya/models/investment_transaction_details.rb +87 -0
- data/lib/akoya/models/investments.rb +88 -0
- data/lib/akoya/models/line_item.rb +156 -0
- data/lib/akoya/models/line_of_credit_balances.rb +601 -0
- data/lib/akoya/models/links.rb +95 -0
- data/lib/akoya/models/loan_account.rb +417 -0
- data/lib/akoya/models/loan_account_info.rb +86 -0
- data/lib/akoya/models/loan_balance_details.rb +86 -0
- data/lib/akoya/models/loan_balances.rb +556 -0
- data/lib/akoya/models/loan_payment_frequency.rb +68 -0
- data/lib/akoya/models/loan_transaction.rb +360 -0
- data/lib/akoya/models/loan_transaction_details.rb +87 -0
- data/lib/akoya/models/loc_account_info.rb +86 -0
- data/lib/akoya/models/loc_balance_details.rb +86 -0
- data/lib/akoya/models/loc_transaction.rb +372 -0
- data/lib/akoya/models/loc_transaction_details.rb +86 -0
- data/lib/akoya/models/mnext.rb +84 -0
- data/lib/akoya/models/mode.rb +36 -0
- data/lib/akoya/models/mutual_fund_security.rb +99 -0
- data/lib/akoya/models/mutual_fund_security_entity.rb +150 -0
- data/lib/akoya/models/mutual_fund_type.rb +40 -0
- data/lib/akoya/models/obtain_tokens.rb +99 -0
- data/lib/akoya/models/open_order_entity.rb +228 -0
- data/lib/akoya/models/option_security.rb +125 -0
- data/lib/akoya/models/option_security_entity.rb +127 -0
- data/lib/akoya/models/option_type.rb +36 -0
- data/lib/akoya/models/order_duration.rb +40 -0
- data/lib/akoya/models/order_type.rb +60 -0
- data/lib/akoya/models/other_security_entity.rb +77 -0
- data/lib/akoya/models/paginated_array.rb +75 -0
- data/lib/akoya/models/payment_details.rb +142 -0
- data/lib/akoya/models/payment_frequency.rb +56 -0
- data/lib/akoya/models/payment_frequency_annuity_account.rb +44 -0
- data/lib/akoya/models/payment_frequency_annuity_balances.rb +44 -0
- data/lib/akoya/models/payment_network_supported_by_account.rb +129 -0
- data/lib/akoya/models/pension_source_entity.rb +143 -0
- data/lib/akoya/models/period_certain_guarantee.rb +48 -0
- data/lib/akoya/models/policy_premium_term.rb +36 -0
- data/lib/akoya/models/position_type.rb +36 -0
- data/lib/akoya/models/postion_type.rb +36 -0
- data/lib/akoya/models/prev.rb +84 -0
- data/lib/akoya/models/refresh_tokens.rb +103 -0
- data/lib/akoya/models/secured.rb +36 -0
- data/lib/akoya/models/security_id_type.rb +52 -0
- data/lib/akoya/models/security_id_type_investment_transaction.rb +52 -0
- data/lib/akoya/models/security_type.rb +56 -0
- data/lib/akoya/models/statement_entity.rb +136 -0
- data/lib/akoya/models/status.rb +56 -0
- data/lib/akoya/models/status_deposit_transaction.rb +44 -0
- data/lib/akoya/models/status_insurance_transaction.rb +44 -0
- data/lib/akoya/models/status_investment_transaction.rb +44 -0
- data/lib/akoya/models/status_loan_transaction.rb +44 -0
- data/lib/akoya/models/status_loc_transaction.rb +44 -0
- data/lib/akoya/models/status_statement_entity.rb +40 -0
- data/lib/akoya/models/status_transaction.rb +44 -0
- data/lib/akoya/models/stock_security_entity.rb +137 -0
- data/lib/akoya/models/stock_type.rb +56 -0
- data/lib/akoya/models/sub_account.rb +44 -0
- data/lib/akoya/models/sub_account_fund.rb +44 -0
- data/lib/akoya/models/sub_account_sec.rb +44 -0
- data/lib/akoya/models/sweep_security_entity.rb +118 -0
- data/lib/akoya/models/tax_lot.rb +137 -0
- data/lib/akoya/models/tax_lot_an_investment_holding.rb +139 -0
- data/lib/akoya/models/telephone.rb +95 -0
- data/lib/akoya/models/telephone_number.rb +95 -0
- data/lib/akoya/models/token_example_response.rb +101 -0
- data/lib/akoya/models/transaction.rb +328 -0
- data/lib/akoya/models/transaction_reason.rb +41 -0
- data/lib/akoya/models/transaction_type.rb +84 -0
- data/lib/akoya/models/transaction_type_insurance_transaction.rb +44 -0
- data/lib/akoya/models/transaction_type_investment_transaction.rb +192 -0
- data/lib/akoya/models/transaction_type_loan_transaction.rb +44 -0
- data/lib/akoya/models/transaction_type_loc_transaction.rb +84 -0
- data/lib/akoya/models/transactions_entity.rb +98 -0
- data/lib/akoya/models/transfer_action.rb +36 -0
- data/lib/akoya/models/type.rb +44 -0
- data/lib/akoya/models/type_hateoas_link.rb +52 -0
- data/lib/akoya/models/type_telephone_number.rb +44 -0
- data/lib/akoya/models/unit_type.rb +36 -0
- data/lib/akoya/models/unit_type_open_order_entity.rb +36 -0
- data/lib/akoya/models/us_bank_investment.rb +535 -0
- data/lib/akoya/models/us_bank_investment_details.rb +75 -0
- data/lib/akoya/models/us_bank_investment_holdings.rb +403 -0
- data/lib/akoya/models/vesting.rb +135 -0
- data/lib/akoya/models/vesting_entity.rb +185 -0
- data/lib/akoya/models/x_akoya_interaction_type.rb +36 -0
- data/lib/akoya/utilities/date_time_helper.rb +11 -0
- data/lib/akoya/utilities/file_wrapper.rb +28 -0
- data/lib/akoya/utilities/union_type_lookup.rb +91 -0
- data/lib/akoya.rb +250 -0
- metadata +312 -0
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
# akoya
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by APIMATIC v3.0 (
|
|
4
|
+
# https://www.apimatic.io ).
|
|
5
|
+
|
|
6
|
+
require 'date'
|
|
7
|
+
module Akoya
|
|
8
|
+
# Provides the past, present, and future vesting schedule and percentages.
|
|
9
|
+
class VestingEntity < BaseModel
|
|
10
|
+
SKIP = Object.new
|
|
11
|
+
private_constant :SKIP
|
|
12
|
+
|
|
13
|
+
# Vesting date
|
|
14
|
+
# @return [DateTime]
|
|
15
|
+
attr_accessor :vesting_date
|
|
16
|
+
|
|
17
|
+
# Security symbol
|
|
18
|
+
# @return [String]
|
|
19
|
+
attr_accessor :symbol
|
|
20
|
+
|
|
21
|
+
# Strike price
|
|
22
|
+
# @return [Float]
|
|
23
|
+
attr_accessor :strike_price
|
|
24
|
+
|
|
25
|
+
# Vesting percentage
|
|
26
|
+
# @return [Float]
|
|
27
|
+
attr_accessor :vesting_percentage
|
|
28
|
+
|
|
29
|
+
# Other vest amount
|
|
30
|
+
# @return [Float]
|
|
31
|
+
attr_accessor :other_vest_amount
|
|
32
|
+
|
|
33
|
+
# Other vest percentage
|
|
34
|
+
# @return [Float]
|
|
35
|
+
attr_accessor :other_vest_percentage
|
|
36
|
+
|
|
37
|
+
# Vested balance
|
|
38
|
+
# @return [Float]
|
|
39
|
+
attr_accessor :vested_balance
|
|
40
|
+
|
|
41
|
+
# Unvested balance
|
|
42
|
+
# @return [Float]
|
|
43
|
+
attr_accessor :un_vested_balance
|
|
44
|
+
|
|
45
|
+
# Vested qualtity
|
|
46
|
+
# @return [Float]
|
|
47
|
+
attr_accessor :vested_quantity
|
|
48
|
+
|
|
49
|
+
# Unvested quantity
|
|
50
|
+
# @return [Float]
|
|
51
|
+
attr_accessor :un_vested_quantity
|
|
52
|
+
|
|
53
|
+
# A mapping from model property names to API property names.
|
|
54
|
+
def self.names
|
|
55
|
+
@_hash = {} if @_hash.nil?
|
|
56
|
+
@_hash['vesting_date'] = 'vestingDate'
|
|
57
|
+
@_hash['symbol'] = 'symbol'
|
|
58
|
+
@_hash['strike_price'] = 'strikePrice'
|
|
59
|
+
@_hash['vesting_percentage'] = 'vestingPercentage'
|
|
60
|
+
@_hash['other_vest_amount'] = 'otherVestAmount'
|
|
61
|
+
@_hash['other_vest_percentage'] = 'otherVestPercentage'
|
|
62
|
+
@_hash['vested_balance'] = 'vestedBalance'
|
|
63
|
+
@_hash['un_vested_balance'] = 'unVestedBalance'
|
|
64
|
+
@_hash['vested_quantity'] = 'vestedQuantity'
|
|
65
|
+
@_hash['un_vested_quantity'] = 'unVestedQuantity'
|
|
66
|
+
@_hash
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
# An array for optional fields
|
|
70
|
+
def self.optionals
|
|
71
|
+
%w[
|
|
72
|
+
vesting_date
|
|
73
|
+
symbol
|
|
74
|
+
strike_price
|
|
75
|
+
vesting_percentage
|
|
76
|
+
other_vest_amount
|
|
77
|
+
other_vest_percentage
|
|
78
|
+
vested_balance
|
|
79
|
+
un_vested_balance
|
|
80
|
+
vested_quantity
|
|
81
|
+
un_vested_quantity
|
|
82
|
+
]
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
# An array for nullable fields
|
|
86
|
+
def self.nullables
|
|
87
|
+
[]
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
def initialize(vesting_date: SKIP, symbol: SKIP, strike_price: SKIP,
|
|
91
|
+
vesting_percentage: SKIP, other_vest_amount: SKIP,
|
|
92
|
+
other_vest_percentage: SKIP, vested_balance: SKIP,
|
|
93
|
+
un_vested_balance: SKIP, vested_quantity: SKIP,
|
|
94
|
+
un_vested_quantity: SKIP, additional_properties: nil)
|
|
95
|
+
# Add additional model properties to the instance
|
|
96
|
+
additional_properties = {} if additional_properties.nil?
|
|
97
|
+
|
|
98
|
+
@vesting_date = vesting_date unless vesting_date == SKIP
|
|
99
|
+
@symbol = symbol unless symbol == SKIP
|
|
100
|
+
@strike_price = strike_price unless strike_price == SKIP
|
|
101
|
+
@vesting_percentage = vesting_percentage unless vesting_percentage == SKIP
|
|
102
|
+
@other_vest_amount = other_vest_amount unless other_vest_amount == SKIP
|
|
103
|
+
@other_vest_percentage = other_vest_percentage unless other_vest_percentage == SKIP
|
|
104
|
+
@vested_balance = vested_balance unless vested_balance == SKIP
|
|
105
|
+
@un_vested_balance = un_vested_balance unless un_vested_balance == SKIP
|
|
106
|
+
@vested_quantity = vested_quantity unless vested_quantity == SKIP
|
|
107
|
+
@un_vested_quantity = un_vested_quantity unless un_vested_quantity == SKIP
|
|
108
|
+
@additional_properties = additional_properties
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
# Creates an instance of the object from a hash.
|
|
112
|
+
def self.from_hash(hash)
|
|
113
|
+
return nil unless hash
|
|
114
|
+
|
|
115
|
+
# Extract variables from the hash.
|
|
116
|
+
vesting_date = if hash.key?('vestingDate')
|
|
117
|
+
(DateTimeHelper.from_rfc3339(hash['vestingDate']) if hash['vestingDate'])
|
|
118
|
+
else
|
|
119
|
+
SKIP
|
|
120
|
+
end
|
|
121
|
+
symbol = hash.key?('symbol') ? hash['symbol'] : SKIP
|
|
122
|
+
strike_price = hash.key?('strikePrice') ? hash['strikePrice'] : SKIP
|
|
123
|
+
vesting_percentage =
|
|
124
|
+
hash.key?('vestingPercentage') ? hash['vestingPercentage'] : SKIP
|
|
125
|
+
other_vest_amount =
|
|
126
|
+
hash.key?('otherVestAmount') ? hash['otherVestAmount'] : SKIP
|
|
127
|
+
other_vest_percentage =
|
|
128
|
+
hash.key?('otherVestPercentage') ? hash['otherVestPercentage'] : SKIP
|
|
129
|
+
vested_balance = hash.key?('vestedBalance') ? hash['vestedBalance'] : SKIP
|
|
130
|
+
un_vested_balance =
|
|
131
|
+
hash.key?('unVestedBalance') ? hash['unVestedBalance'] : SKIP
|
|
132
|
+
vested_quantity =
|
|
133
|
+
hash.key?('vestedQuantity') ? hash['vestedQuantity'] : SKIP
|
|
134
|
+
un_vested_quantity =
|
|
135
|
+
hash.key?('unVestedQuantity') ? hash['unVestedQuantity'] : SKIP
|
|
136
|
+
|
|
137
|
+
# Create a new hash for additional properties, removing known properties.
|
|
138
|
+
new_hash = hash.reject { |k, _| names.value?(k) }
|
|
139
|
+
|
|
140
|
+
additional_properties = APIHelper.get_additional_properties(
|
|
141
|
+
new_hash, proc { |value| value }
|
|
142
|
+
)
|
|
143
|
+
|
|
144
|
+
# Create object from extracted values.
|
|
145
|
+
VestingEntity.new(vesting_date: vesting_date,
|
|
146
|
+
symbol: symbol,
|
|
147
|
+
strike_price: strike_price,
|
|
148
|
+
vesting_percentage: vesting_percentage,
|
|
149
|
+
other_vest_amount: other_vest_amount,
|
|
150
|
+
other_vest_percentage: other_vest_percentage,
|
|
151
|
+
vested_balance: vested_balance,
|
|
152
|
+
un_vested_balance: un_vested_balance,
|
|
153
|
+
vested_quantity: vested_quantity,
|
|
154
|
+
un_vested_quantity: un_vested_quantity,
|
|
155
|
+
additional_properties: additional_properties)
|
|
156
|
+
end
|
|
157
|
+
|
|
158
|
+
def to_custom_vesting_date
|
|
159
|
+
DateTimeHelper.to_rfc3339(vesting_date)
|
|
160
|
+
end
|
|
161
|
+
|
|
162
|
+
# Provides a human-readable string representation of the object.
|
|
163
|
+
def to_s
|
|
164
|
+
class_name = self.class.name.split('::').last
|
|
165
|
+
"<#{class_name} vesting_date: #{@vesting_date}, symbol: #{@symbol}, strike_price:"\
|
|
166
|
+
" #{@strike_price}, vesting_percentage: #{@vesting_percentage}, other_vest_amount:"\
|
|
167
|
+
" #{@other_vest_amount}, other_vest_percentage: #{@other_vest_percentage}, vested_balance:"\
|
|
168
|
+
" #{@vested_balance}, un_vested_balance: #{@un_vested_balance}, vested_quantity:"\
|
|
169
|
+
" #{@vested_quantity}, un_vested_quantity: #{@un_vested_quantity}, additional_properties:"\
|
|
170
|
+
" #{@additional_properties}>"
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
# Provides a debugging-friendly string with detailed object information.
|
|
174
|
+
def inspect
|
|
175
|
+
class_name = self.class.name.split('::').last
|
|
176
|
+
"<#{class_name} vesting_date: #{@vesting_date.inspect}, symbol: #{@symbol.inspect},"\
|
|
177
|
+
" strike_price: #{@strike_price.inspect}, vesting_percentage:"\
|
|
178
|
+
" #{@vesting_percentage.inspect}, other_vest_amount: #{@other_vest_amount.inspect},"\
|
|
179
|
+
" other_vest_percentage: #{@other_vest_percentage.inspect}, vested_balance:"\
|
|
180
|
+
" #{@vested_balance.inspect}, un_vested_balance: #{@un_vested_balance.inspect},"\
|
|
181
|
+
" vested_quantity: #{@vested_quantity.inspect}, un_vested_quantity:"\
|
|
182
|
+
" #{@un_vested_quantity.inspect}, additional_properties: #{@additional_properties}>"
|
|
183
|
+
end
|
|
184
|
+
end
|
|
185
|
+
end
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# akoya
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by APIMATIC v3.0 (
|
|
4
|
+
# https://www.apimatic.io ).
|
|
5
|
+
|
|
6
|
+
module Akoya
|
|
7
|
+
# x-akoya-interaction-type.
|
|
8
|
+
class XAkoyaInteractionType
|
|
9
|
+
X_AKOYA_INTERACTION_TYPE = [
|
|
10
|
+
# TODO: Write general description for USER
|
|
11
|
+
USER = 'user'.freeze,
|
|
12
|
+
|
|
13
|
+
# TODO: Write general description for BATCH
|
|
14
|
+
BATCH = 'batch'.freeze
|
|
15
|
+
].freeze
|
|
16
|
+
|
|
17
|
+
def self.validate(value)
|
|
18
|
+
return false if value.nil?
|
|
19
|
+
|
|
20
|
+
true
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def self.from_value(value, default_value = USER)
|
|
24
|
+
return default_value if value.nil?
|
|
25
|
+
|
|
26
|
+
str = value.to_s.strip
|
|
27
|
+
|
|
28
|
+
case str.downcase
|
|
29
|
+
when 'user' then USER
|
|
30
|
+
when 'batch' then BATCH
|
|
31
|
+
else
|
|
32
|
+
default_value
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# akoya
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by APIMATIC v3.0 (
|
|
4
|
+
# https://www.apimatic.io ).
|
|
5
|
+
|
|
6
|
+
require 'date'
|
|
7
|
+
module Akoya
|
|
8
|
+
# A utility that supports dateTime conversion to different formats
|
|
9
|
+
class DateTimeHelper < CoreLibrary::DateTimeHelper
|
|
10
|
+
end
|
|
11
|
+
end
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# akoya
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by APIMATIC v3.0 (
|
|
4
|
+
# https://www.apimatic.io ).
|
|
5
|
+
|
|
6
|
+
module Akoya
|
|
7
|
+
# A utility to allow users to set the content-type for files
|
|
8
|
+
class FileWrapper < CoreLibrary::FileWrapper
|
|
9
|
+
# The constructor.
|
|
10
|
+
# @param [File] file The file to be sent in the request.
|
|
11
|
+
# @param [string] content_type The content type of the provided file.
|
|
12
|
+
def initialize(file, content_type: 'application/octet-stream')
|
|
13
|
+
super
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
# Provides a human-readable string representation of the object.
|
|
17
|
+
def to_s
|
|
18
|
+
class_name = self.class.name.split('::').last
|
|
19
|
+
"<#{class_name} file: #{@file}, content_type: #{@content_type}>"
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
# Provides a debugging-friendly string with detailed object information.
|
|
23
|
+
def to_inspect
|
|
24
|
+
class_name = self.class.name.split('::').last
|
|
25
|
+
"<#{class_name} file: #{@file.inspect}, content_type: #{@content_type.inspect}>"
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# akoya
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by APIMATIC v3.0 (
|
|
4
|
+
# https://www.apimatic.io ).
|
|
5
|
+
|
|
6
|
+
module Akoya
|
|
7
|
+
# The `UnionTypeLookUp` class serves as a utility class for
|
|
8
|
+
# storing and managing type combinator templates. It acts as a container for the templates
|
|
9
|
+
# used in handling various oneof/anyof instances within the sdk.
|
|
10
|
+
class UnionTypeLookUp
|
|
11
|
+
include CoreLibrary
|
|
12
|
+
# rubocop:disable Lint/RedundantCopDisableDirective, Style/HashSyntax, Layout/FirstArgumentIndentation
|
|
13
|
+
def self.union_types
|
|
14
|
+
{
|
|
15
|
+
:TransactionsEntityTransactions => AnyOf.new(
|
|
16
|
+
[
|
|
17
|
+
LeafType.new(DepositTransactionDetails),
|
|
18
|
+
LeafType.new(LoanTransactionDetails),
|
|
19
|
+
LeafType.new(LocTransactionDetails),
|
|
20
|
+
LeafType.new(InvestmentTransactionDetails),
|
|
21
|
+
LeafType.new(InsuranceTransactionDetails)
|
|
22
|
+
],
|
|
23
|
+
UnionTypeContext.new(
|
|
24
|
+
is_array: true,
|
|
25
|
+
is_optional: true
|
|
26
|
+
)
|
|
27
|
+
),
|
|
28
|
+
|
|
29
|
+
:AkoyaAccountInfoProductAccounts => AnyOf.new(
|
|
30
|
+
[
|
|
31
|
+
LeafType.new(DepositAccountInfo),
|
|
32
|
+
LeafType.new(LoanAccountInfo),
|
|
33
|
+
LeafType.new(LocAccountInfo),
|
|
34
|
+
LeafType.new(InvestmentAccountInfo),
|
|
35
|
+
LeafType.new(InsuranceAccountInfo),
|
|
36
|
+
LeafType.new(AnnuityAccountInfo)
|
|
37
|
+
],
|
|
38
|
+
UnionTypeContext.new(
|
|
39
|
+
is_array: true,
|
|
40
|
+
is_optional: true
|
|
41
|
+
)
|
|
42
|
+
),
|
|
43
|
+
|
|
44
|
+
:BalancesAccounts => AnyOf.new(
|
|
45
|
+
[
|
|
46
|
+
LeafType.new(DepositBalanceDetails),
|
|
47
|
+
LeafType.new(LoanBalanceDetails),
|
|
48
|
+
LeafType.new(LocBalanceDetails),
|
|
49
|
+
LeafType.new(InvestmentBalanceDetails),
|
|
50
|
+
LeafType.new(InsuranceBalanceDetails),
|
|
51
|
+
LeafType.new(AnnuityBalanceDetails)
|
|
52
|
+
],
|
|
53
|
+
UnionTypeContext.new(
|
|
54
|
+
is_array: true,
|
|
55
|
+
is_optional: true
|
|
56
|
+
)
|
|
57
|
+
),
|
|
58
|
+
|
|
59
|
+
:InvestmentDetailsInvestmentAccount => AnyOf.new(
|
|
60
|
+
[
|
|
61
|
+
LeafType.new(UsBankInvestment),
|
|
62
|
+
LeafType.new(CitiBankInvestment)
|
|
63
|
+
],
|
|
64
|
+
UnionTypeContext.new(
|
|
65
|
+
is_optional: true
|
|
66
|
+
)
|
|
67
|
+
),
|
|
68
|
+
|
|
69
|
+
:InvestmentsAccounts => AnyOf.new(
|
|
70
|
+
[
|
|
71
|
+
LeafType.new(InvestmentDetails),
|
|
72
|
+
LeafType.new(InvestmentAccountDepositBalance),
|
|
73
|
+
LeafType.new(InvestmentAccountLoanBalance),
|
|
74
|
+
LeafType.new(InvestmentAccountLocBalance),
|
|
75
|
+
LeafType.new(InvestmentAccountInsuranceBalance),
|
|
76
|
+
LeafType.new(InvestmentAccountAnnuityBalance)
|
|
77
|
+
],
|
|
78
|
+
UnionTypeContext.new(
|
|
79
|
+
is_array: true,
|
|
80
|
+
is_optional: true
|
|
81
|
+
)
|
|
82
|
+
)
|
|
83
|
+
}
|
|
84
|
+
end
|
|
85
|
+
# rubocop:enable Lint/RedundantCopDisableDirective, Style/HashSyntax, Layout/FirstArgumentIndentation
|
|
86
|
+
|
|
87
|
+
def self.get(name)
|
|
88
|
+
UnionTypeLookUp.union_types[name]
|
|
89
|
+
end
|
|
90
|
+
end
|
|
91
|
+
end
|
data/lib/akoya.rb
ADDED
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
# akoya
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by APIMATIC v3.0 (
|
|
4
|
+
# https://www.apimatic.io ).
|
|
5
|
+
|
|
6
|
+
require 'date'
|
|
7
|
+
require 'json'
|
|
8
|
+
|
|
9
|
+
require 'apimatic_core_interfaces'
|
|
10
|
+
require 'apimatic_core'
|
|
11
|
+
require 'apimatic_faraday_client_adapter'
|
|
12
|
+
|
|
13
|
+
require_relative 'akoya/api_helper'
|
|
14
|
+
require_relative 'akoya/client'
|
|
15
|
+
|
|
16
|
+
# Utilities
|
|
17
|
+
require_relative 'akoya/utilities/file_wrapper'
|
|
18
|
+
require_relative 'akoya/utilities/date_time_helper'
|
|
19
|
+
require_relative 'akoya/utilities/union_type_lookup'
|
|
20
|
+
|
|
21
|
+
# Http
|
|
22
|
+
require_relative 'akoya/http/api_response'
|
|
23
|
+
require_relative 'akoya/http/http_call_back'
|
|
24
|
+
require_relative 'akoya/http/http_method_enum'
|
|
25
|
+
require_relative 'akoya/http/http_request'
|
|
26
|
+
require_relative 'akoya/http/http_response'
|
|
27
|
+
require_relative 'akoya/http/proxy_settings'
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
# Logger
|
|
31
|
+
require_relative 'akoya/logging/configuration/api_logging_configuration'
|
|
32
|
+
require_relative 'akoya/logging/sdk_logger'
|
|
33
|
+
require_relative 'akoya/http/auth/basic_auth'
|
|
34
|
+
require_relative 'akoya/http/auth/bearer_auth'
|
|
35
|
+
|
|
36
|
+
# Models
|
|
37
|
+
require_relative 'akoya/models/base_model'
|
|
38
|
+
require_relative 'akoya/models/us_bank_investment_details'
|
|
39
|
+
require_relative 'akoya/models/citi_bank_investment_details'
|
|
40
|
+
require_relative 'akoya/models/account_contact_entity'
|
|
41
|
+
require_relative 'akoya/models/account_holder_entity'
|
|
42
|
+
require_relative 'akoya/models/account_information'
|
|
43
|
+
require_relative 'akoya/models/payment_network_supported_by_account'
|
|
44
|
+
require_relative 'akoya/models/address'
|
|
45
|
+
require_relative 'akoya/models/annuity_account'
|
|
46
|
+
require_relative 'akoya/models/annuity_balances'
|
|
47
|
+
require_relative 'akoya/models/investment_balance_list'
|
|
48
|
+
require_relative 'akoya/models/business_customer_entity'
|
|
49
|
+
require_relative 'akoya/models/contribution_entity'
|
|
50
|
+
require_relative 'akoya/models/currency_entity'
|
|
51
|
+
require_relative 'akoya/models/customer'
|
|
52
|
+
require_relative 'akoya/models/customer_name'
|
|
53
|
+
require_relative 'akoya/models/current_customer'
|
|
54
|
+
require_relative 'akoya/models/debt_security_entity'
|
|
55
|
+
require_relative 'akoya/models/delivery_address'
|
|
56
|
+
require_relative 'akoya/models/deposit_account'
|
|
57
|
+
require_relative 'akoya/models/deposit_balances'
|
|
58
|
+
require_relative 'akoya/models/deposit_transaction'
|
|
59
|
+
require_relative 'akoya/models/equity_grant'
|
|
60
|
+
require_relative 'akoya/models/fi_attribute_entity'
|
|
61
|
+
require_relative 'akoya/models/hateoas_link'
|
|
62
|
+
require_relative 'akoya/models/an_investment_holding'
|
|
63
|
+
require_relative 'akoya/models/insurance_account'
|
|
64
|
+
require_relative 'akoya/models/insurance_balances'
|
|
65
|
+
require_relative 'akoya/models/insurance_transaction'
|
|
66
|
+
require_relative 'akoya/models/investment_account'
|
|
67
|
+
require_relative 'akoya/models/investment_balances'
|
|
68
|
+
require_relative 'akoya/models/investment_loan_entity'
|
|
69
|
+
require_relative 'akoya/models/investment_transaction'
|
|
70
|
+
require_relative 'akoya/models/line_item'
|
|
71
|
+
require_relative 'akoya/models/loan_account'
|
|
72
|
+
require_relative 'akoya/models/loan_balances'
|
|
73
|
+
require_relative 'akoya/models/loan_transaction'
|
|
74
|
+
require_relative 'akoya/models/line_of_credit_balances'
|
|
75
|
+
require_relative 'akoya/models/loc_transaction'
|
|
76
|
+
require_relative 'akoya/models/mutual_fund_security_entity'
|
|
77
|
+
require_relative 'akoya/models/open_order_entity'
|
|
78
|
+
require_relative 'akoya/models/option_security_entity'
|
|
79
|
+
require_relative 'akoya/models/other_security_entity'
|
|
80
|
+
require_relative 'akoya/models/paginated_array'
|
|
81
|
+
require_relative 'akoya/models/payment_details'
|
|
82
|
+
require_relative 'akoya/models/pension_source_entity'
|
|
83
|
+
require_relative 'akoya/models/statement_entity'
|
|
84
|
+
require_relative 'akoya/models/an_array_of_statements'
|
|
85
|
+
require_relative 'akoya/models/stock_security_entity'
|
|
86
|
+
require_relative 'akoya/models/sweep_security_entity'
|
|
87
|
+
require_relative 'akoya/models/telephone_number'
|
|
88
|
+
require_relative 'akoya/models/transaction'
|
|
89
|
+
require_relative 'akoya/models/transactions_entity'
|
|
90
|
+
require_relative 'akoya/models/vesting_entity'
|
|
91
|
+
require_relative 'akoya/models/account'
|
|
92
|
+
require_relative 'akoya/models/akoya_account_info_product'
|
|
93
|
+
require_relative 'akoya/models/annuity_account_info'
|
|
94
|
+
require_relative 'akoya/models/annuity_balance_details'
|
|
95
|
+
require_relative 'akoya/models/array_of_account_payment_networks'
|
|
96
|
+
require_relative 'akoya/models/asset_class'
|
|
97
|
+
require_relative 'akoya/models/balances'
|
|
98
|
+
require_relative 'akoya/models/citi_bank_investment_holdings'
|
|
99
|
+
require_relative 'akoya/models/citi_bank_investment'
|
|
100
|
+
require_relative 'akoya/models/currency'
|
|
101
|
+
require_relative 'akoya/models/debt_security'
|
|
102
|
+
require_relative 'akoya/models/deposit_account_info'
|
|
103
|
+
require_relative 'akoya/models/deposit_balance_details'
|
|
104
|
+
require_relative 'akoya/models/deposit_transaction_details'
|
|
105
|
+
require_relative 'akoya/models/domicile'
|
|
106
|
+
require_relative 'akoya/models/fi_asset_class'
|
|
107
|
+
require_relative 'akoya/models/fi_attribute'
|
|
108
|
+
require_relative 'akoya/models/industry_code'
|
|
109
|
+
require_relative 'akoya/models/insurance_account_info'
|
|
110
|
+
require_relative 'akoya/models/insurance_balance_details'
|
|
111
|
+
require_relative 'akoya/models/insurance_transaction_details'
|
|
112
|
+
require_relative 'akoya/models/investment_account_annuity_balance'
|
|
113
|
+
require_relative 'akoya/models/investment_account_deposit_balance'
|
|
114
|
+
require_relative 'akoya/models/investment_account_info'
|
|
115
|
+
require_relative 'akoya/models/investment_account_insurance_balance'
|
|
116
|
+
require_relative 'akoya/models/investment_account_loan_balance'
|
|
117
|
+
require_relative 'akoya/models/investment_account_loc_balance'
|
|
118
|
+
require_relative 'akoya/models/investment_balance_details'
|
|
119
|
+
require_relative 'akoya/models/investment_details'
|
|
120
|
+
require_relative 'akoya/models/investments'
|
|
121
|
+
require_relative 'akoya/models/investment_transaction_details'
|
|
122
|
+
require_relative 'akoya/models/links'
|
|
123
|
+
require_relative 'akoya/models/loan_account_info'
|
|
124
|
+
require_relative 'akoya/models/loan_balance_details'
|
|
125
|
+
require_relative 'akoya/models/loan_transaction_details'
|
|
126
|
+
require_relative 'akoya/models/loc_account_info'
|
|
127
|
+
require_relative 'akoya/models/loc_balance_details'
|
|
128
|
+
require_relative 'akoya/models/loc_transaction_details'
|
|
129
|
+
require_relative 'akoya/models/mutual_fund_security'
|
|
130
|
+
require_relative 'akoya/models/mnext'
|
|
131
|
+
require_relative 'akoya/models/option_security'
|
|
132
|
+
require_relative 'akoya/models/prev'
|
|
133
|
+
require_relative 'akoya/models/tax_lot'
|
|
134
|
+
require_relative 'akoya/models/telephone'
|
|
135
|
+
require_relative 'akoya/models/us_bank_investment_holdings'
|
|
136
|
+
require_relative 'akoya/models/us_bank_investment'
|
|
137
|
+
require_relative 'akoya/models/vesting'
|
|
138
|
+
require_relative 'akoya/models/asset_class_citi_bank_investment_holdings'
|
|
139
|
+
require_relative 'akoya/models/asset_class_an_investment_holding'
|
|
140
|
+
require_relative 'akoya/models/business_customer_entity_account_holder_entity'
|
|
141
|
+
require_relative 'akoya/models/business_customer_entity_customer'
|
|
142
|
+
require_relative 'akoya/models/currency_citi_bank_investment_holdings'
|
|
143
|
+
require_relative 'akoya/models/customer_current_customer'
|
|
144
|
+
require_relative 'akoya/models/customer_name_account_holder_entity'
|
|
145
|
+
require_relative 'akoya/models/customer_name_customer'
|
|
146
|
+
require_relative 'akoya/models/error_entity_account_information'
|
|
147
|
+
require_relative 'akoya/models/error_entity_annuity_account'
|
|
148
|
+
require_relative 'akoya/models/error_entity_annuity_balances'
|
|
149
|
+
require_relative 'akoya/models/error_entity_deposit_account'
|
|
150
|
+
require_relative 'akoya/models/error_entity_deposit_balances'
|
|
151
|
+
require_relative 'akoya/models/error_entity_insurance_account'
|
|
152
|
+
require_relative 'akoya/models/error_entity_insurance_balances'
|
|
153
|
+
require_relative 'akoya/models/error_entity_investment_account'
|
|
154
|
+
require_relative 'akoya/models/error_entity_investment_balances'
|
|
155
|
+
require_relative 'akoya/models/error_entity_loan_account'
|
|
156
|
+
require_relative 'akoya/models/error_entity_loan_balances'
|
|
157
|
+
require_relative 'akoya/models/error_entity_line_of_credit_balances'
|
|
158
|
+
require_relative 'akoya/models/error_entity_citi_bank_investment'
|
|
159
|
+
require_relative 'akoya/models/error_entity_us_bank_investment'
|
|
160
|
+
require_relative 'akoya/models/fi_asset_class_an_investment_holding'
|
|
161
|
+
require_relative 'akoya/models/tax_lot_an_investment_holding'
|
|
162
|
+
require_relative 'akoya/models/obtain_tokens'
|
|
163
|
+
require_relative 'akoya/models/refresh_tokens'
|
|
164
|
+
require_relative 'akoya/models/token_example_response'
|
|
165
|
+
require_relative 'akoya/models/account_holder_relationship'
|
|
166
|
+
require_relative 'akoya/models/account_category'
|
|
167
|
+
require_relative 'akoya/models/action'
|
|
168
|
+
require_relative 'akoya/models/annual_increase_type'
|
|
169
|
+
require_relative 'akoya/models/annuity_product_type'
|
|
170
|
+
require_relative 'akoya/models/annuity_value_basis'
|
|
171
|
+
require_relative 'akoya/models/balance_type'
|
|
172
|
+
require_relative 'akoya/models/call_type'
|
|
173
|
+
require_relative 'akoya/models/compounding_period'
|
|
174
|
+
require_relative 'akoya/models/coupon_mature_frequency'
|
|
175
|
+
require_relative 'akoya/models/debit_credit_memo'
|
|
176
|
+
require_relative 'akoya/models/debt_class'
|
|
177
|
+
require_relative 'akoya/models/debt_type'
|
|
178
|
+
require_relative 'akoya/models/frequency'
|
|
179
|
+
require_relative 'akoya/models/held_in_account'
|
|
180
|
+
require_relative 'akoya/models/holding_sub_type'
|
|
181
|
+
require_relative 'akoya/models/holding_type'
|
|
182
|
+
require_relative 'akoya/models/income_type'
|
|
183
|
+
require_relative 'akoya/models/interest_rate_type'
|
|
184
|
+
require_relative 'akoya/models/inv401_k_source'
|
|
185
|
+
require_relative 'akoya/models/inv401_k_surce'
|
|
186
|
+
require_relative 'akoya/models/loan_payment_frequency'
|
|
187
|
+
require_relative 'akoya/models/mode'
|
|
188
|
+
require_relative 'akoya/models/mutual_fund_type'
|
|
189
|
+
require_relative 'akoya/models/option_type'
|
|
190
|
+
require_relative 'akoya/models/order_duration'
|
|
191
|
+
require_relative 'akoya/models/order_type'
|
|
192
|
+
require_relative 'akoya/models/payment_frequency'
|
|
193
|
+
require_relative 'akoya/models/period_certain_guarantee'
|
|
194
|
+
require_relative 'akoya/models/policy_premium_term'
|
|
195
|
+
require_relative 'akoya/models/position_type'
|
|
196
|
+
require_relative 'akoya/models/postion_type'
|
|
197
|
+
require_relative 'akoya/models/secured'
|
|
198
|
+
require_relative 'akoya/models/security_id_type'
|
|
199
|
+
require_relative 'akoya/models/security_type'
|
|
200
|
+
require_relative 'akoya/models/status'
|
|
201
|
+
require_relative 'akoya/models/stock_type'
|
|
202
|
+
require_relative 'akoya/models/sub_account'
|
|
203
|
+
require_relative 'akoya/models/sub_account_fund'
|
|
204
|
+
require_relative 'akoya/models/sub_account_sec'
|
|
205
|
+
require_relative 'akoya/models/transaction_reason'
|
|
206
|
+
require_relative 'akoya/models/transaction_type'
|
|
207
|
+
require_relative 'akoya/models/transfer_action'
|
|
208
|
+
require_relative 'akoya/models/type'
|
|
209
|
+
require_relative 'akoya/models/unit_type'
|
|
210
|
+
require_relative 'akoya/models/x_akoya_interaction_type'
|
|
211
|
+
require_relative 'akoya/models/' \
|
|
212
|
+
'account_holder_relationship_account_holder_entity'
|
|
213
|
+
require_relative 'akoya/models/asset_class_asset_class'
|
|
214
|
+
require_relative 'akoya/models/balance_type_investment_balance_list'
|
|
215
|
+
require_relative 'akoya/models/inv401_k_source_open_order_entity'
|
|
216
|
+
require_relative 'akoya/models/payment_frequency_annuity_account'
|
|
217
|
+
require_relative 'akoya/models/payment_frequency_annuity_balances'
|
|
218
|
+
require_relative 'akoya/models/security_id_type_investment_transaction'
|
|
219
|
+
require_relative 'akoya/models/status_deposit_transaction'
|
|
220
|
+
require_relative 'akoya/models/status_insurance_transaction'
|
|
221
|
+
require_relative 'akoya/models/status_investment_transaction'
|
|
222
|
+
require_relative 'akoya/models/status_loan_transaction'
|
|
223
|
+
require_relative 'akoya/models/status_loc_transaction'
|
|
224
|
+
require_relative 'akoya/models/status_transaction'
|
|
225
|
+
require_relative 'akoya/models/status_statement_entity'
|
|
226
|
+
require_relative 'akoya/models/transaction_type_insurance_transaction'
|
|
227
|
+
require_relative 'akoya/models/transaction_type_investment_transaction'
|
|
228
|
+
require_relative 'akoya/models/transaction_type_loan_transaction'
|
|
229
|
+
require_relative 'akoya/models/transaction_type_loc_transaction'
|
|
230
|
+
require_relative 'akoya/models/type_telephone_number'
|
|
231
|
+
require_relative 'akoya/models/type_hateoas_link'
|
|
232
|
+
require_relative 'akoya/models/unit_type_open_order_entity'
|
|
233
|
+
|
|
234
|
+
# Exceptions
|
|
235
|
+
require_relative 'akoya/exceptions/api_exception'
|
|
236
|
+
require_relative 'akoya/exceptions/error_entity_exception'
|
|
237
|
+
require_relative 'akoya/exceptions/error_response_exception'
|
|
238
|
+
|
|
239
|
+
require_relative 'akoya/configuration'
|
|
240
|
+
|
|
241
|
+
# Controllers
|
|
242
|
+
require_relative 'akoya/controllers/base_controller'
|
|
243
|
+
require_relative 'akoya/controllers/account_information_controller'
|
|
244
|
+
require_relative 'akoya/controllers/balances_controller'
|
|
245
|
+
require_relative 'akoya/controllers/customers_controller'
|
|
246
|
+
require_relative 'akoya/controllers/investments_controller'
|
|
247
|
+
require_relative 'akoya/controllers/payments_controller'
|
|
248
|
+
require_relative 'akoya/controllers/statements_controller'
|
|
249
|
+
require_relative 'akoya/controllers/transactions_controller'
|
|
250
|
+
require_relative 'akoya/controllers/tokens_controller'
|