hydrogen-integration-api 1.3.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/Gemfile +7 -0
- data/README.md +87 -0
- data/Rakefile +8 -0
- data/git_push.sh +55 -0
- data/integration_api.gemspec +46 -0
- data/lib/integration_api.rb +257 -0
- data/lib/integration_api/api/accounting_api.rb +870 -0
- data/lib/integration_api/api/ach_api.rb +1109 -0
- data/lib/integration_api/api/aggregation_api.rb +616 -0
- data/lib/integration_api/api/async_api.rb +263 -0
- data/lib/integration_api/api/baas_api.rb +518 -0
- data/lib/integration_api/api/brokerage_api.rb +1091 -0
- data/lib/integration_api/api/card_api.rb +1651 -0
- data/lib/integration_api/api/iav_api.rb +186 -0
- data/lib/integration_api/api/kms_api.rb +301 -0
- data/lib/integration_api/api/kyc_api.rb +138 -0
- data/lib/integration_api/api/market_data_api.rb +127 -0
- data/lib/integration_api/api/rtp_api.rb +479 -0
- data/lib/integration_api/api/sms_api.rb +129 -0
- data/lib/integration_api/api/smtp_api.rb +129 -0
- data/lib/integration_api/api/utils_api.rb +296 -0
- data/lib/integration_api/api/webhook_api.rb +301 -0
- data/lib/integration_api/api/wire_api.rb +479 -0
- data/lib/integration_api/api_client.rb +392 -0
- data/lib/integration_api/api_error.rb +38 -0
- data/lib/integration_api/auth_configuration.rb +181 -0
- data/lib/integration_api/configuration.rb +209 -0
- data/lib/integration_api/environment.rb +26 -0
- data/lib/integration_api/models/accounting_customer_response_vo.rb +200 -0
- data/lib/integration_api/models/accounting_customer_revenue_response_vo.rb +199 -0
- data/lib/integration_api/models/accounting_final_response_vo.rb +252 -0
- data/lib/integration_api/models/accounting_invoice_payment_response_vo.rb +199 -0
- data/lib/integration_api/models/accounting_invoice_response_vo.rb +199 -0
- data/lib/integration_api/models/accounting_stats_response_vo.rb +199 -0
- data/lib/integration_api/models/ach_balance_response_vo.rb +230 -0
- data/lib/integration_api/models/ach_bank_link_request_co.rb +199 -0
- data/lib/integration_api/models/ach_bank_link_response_vo.rb +235 -0
- data/lib/integration_api/models/ach_beneficial_owner_request_co.rb +190 -0
- data/lib/integration_api/models/ach_beneficial_owner_response_vo.rb +208 -0
- data/lib/integration_api/models/ach_business_balance_response_vo.rb +226 -0
- data/lib/integration_api/models/ach_business_request_co.rb +199 -0
- data/lib/integration_api/models/ach_business_response_vo.rb +217 -0
- data/lib/integration_api/models/ach_card_link_request_co.rb +190 -0
- data/lib/integration_api/models/ach_card_link_response_vo.rb +217 -0
- data/lib/integration_api/models/ach_card_load_response_vo.rb +190 -0
- data/lib/integration_api/models/ach_card_request_co.rb +182 -0
- data/lib/integration_api/models/ach_card_reserve_request_co.rb +181 -0
- data/lib/integration_api/models/ach_card_reserve_response_vo.rb +217 -0
- data/lib/integration_api/models/ach_card_response_vo.rb +218 -0
- data/lib/integration_api/models/ach_client_request_co.rb +199 -0
- data/lib/integration_api/models/ach_client_response_vo.rb +217 -0
- data/lib/integration_api/models/ach_reserve_link_request_co.rb +181 -0
- data/lib/integration_api/models/ach_reserve_link_response_vo.rb +219 -0
- data/lib/integration_api/models/ach_status_response_vo.rb +260 -0
- data/lib/integration_api/models/ach_transfer_request_co.rb +199 -0
- data/lib/integration_api/models/ach_transfer_response_vo.rb +244 -0
- data/lib/integration_api/models/acquiree.rb +199 -0
- data/lib/integration_api/models/acquirer.rb +199 -0
- data/lib/integration_api/models/address.rb +278 -0
- data/lib/integration_api/models/aggregation_account.rb +495 -0
- data/lib/integration_api/models/aggregation_account_balance.rb +292 -0
- data/lib/integration_api/models/aggregation_account_balance_response_vo.rb +208 -0
- data/lib/integration_api/models/aggregation_account_holding.rb +370 -0
- data/lib/integration_api/models/aggregation_account_holding_response_internal_object_vo.rb +199 -0
- data/lib/integration_api/models/aggregation_account_holding_response_vo.rb +210 -0
- data/lib/integration_api/models/aggregation_account_response_internal_object_vo.rb +199 -0
- data/lib/integration_api/models/aggregation_account_response_vo.rb +208 -0
- data/lib/integration_api/models/aggregation_account_transaction.rb +329 -0
- data/lib/integration_api/models/aggregation_account_transaction_response_internal_object_vo.rb +199 -0
- data/lib/integration_api/models/aggregation_account_transaction_response_vo.rb +221 -0
- data/lib/integration_api/models/aggregation_accounts_response_vo.rb +210 -0
- data/lib/integration_api/models/aggregation_request_object.rb +226 -0
- data/lib/integration_api/models/aggregation_vendor_request_co.rb +199 -0
- data/lib/integration_api/models/apple_payload.rb +199 -0
- data/lib/integration_api/models/async_transaction.rb +217 -0
- data/lib/integration_api/models/async_transaction_vo.rb +199 -0
- data/lib/integration_api/models/attachment_vo.rb +199 -0
- data/lib/integration_api/models/baas_account_co.rb +190 -0
- data/lib/integration_api/models/baas_account_vo.rb +253 -0
- data/lib/integration_api/models/baas_balance_vo.rb +221 -0
- data/lib/integration_api/models/baas_business_vo.rb +237 -0
- data/lib/integration_api/models/baas_client_vo.rb +237 -0
- data/lib/integration_api/models/baas_statement_vo.rb +226 -0
- data/lib/integration_api/models/baas_statements_vo.rb +201 -0
- data/lib/integration_api/models/baas_sub_account_co.rb +181 -0
- data/lib/integration_api/models/baas_sub_account_vo.rb +244 -0
- data/lib/integration_api/models/baas_transactions_vo.rb +221 -0
- data/lib/integration_api/models/balances.rb +223 -0
- data/lib/integration_api/models/bank_credit.rb +282 -0
- data/lib/integration_api/models/bank_link.rb +431 -0
- data/lib/integration_api/models/bank_link_response_internal_object_vo.rb +199 -0
- data/lib/integration_api/models/bank_link_vendor_data_vo.rb +190 -0
- data/lib/integration_api/models/base_response_vo.rb +199 -0
- data/lib/integration_api/models/brokerage_account_co.rb +192 -0
- data/lib/integration_api/models/brokerage_account_vo.rb +217 -0
- data/lib/integration_api/models/brokerage_balance_vo.rb +228 -0
- data/lib/integration_api/models/brokerage_bank_link_co.rb +181 -0
- data/lib/integration_api/models/brokerage_bank_link_vo.rb +226 -0
- data/lib/integration_api/models/brokerage_create_client_co.rb +192 -0
- data/lib/integration_api/models/brokerage_create_client_vo.rb +217 -0
- data/lib/integration_api/models/brokerage_deposit_co.rb +181 -0
- data/lib/integration_api/models/brokerage_deposit_vo.rb +217 -0
- data/lib/integration_api/models/brokerage_document_co.rb +190 -0
- data/lib/integration_api/models/brokerage_document_vo.rb +226 -0
- data/lib/integration_api/models/brokerage_holding_vo.rb +226 -0
- data/lib/integration_api/models/brokerage_order_co.rb +181 -0
- data/lib/integration_api/models/brokerage_order_vo.rb +226 -0
- data/lib/integration_api/models/brokerage_performance_vo.rb +226 -0
- data/lib/integration_api/models/brokerage_securities_vo.rb +217 -0
- data/lib/integration_api/models/brokerage_statement_vo.rb +199 -0
- data/lib/integration_api/models/brokerage_transaction_vo.rb +226 -0
- data/lib/integration_api/models/brokerage_update_client_co.rb +183 -0
- data/lib/integration_api/models/brokerage_update_client_vo.rb +237 -0
- data/lib/integration_api/models/brokerage_withdrawal_co.rb +181 -0
- data/lib/integration_api/models/brokerage_withdrawal_vo.rb +217 -0
- data/lib/integration_api/models/business_address.rb +253 -0
- data/lib/integration_api/models/business_status_response_vo.rb +217 -0
- data/lib/integration_api/models/business_vendor_request_data_vo.rb +313 -0
- data/lib/integration_api/models/card_auto_reload_request_co.rb +208 -0
- data/lib/integration_api/models/card_auto_reload_response_vo.rb +226 -0
- data/lib/integration_api/models/card_balance_response_vo.rb +230 -0
- data/lib/integration_api/models/card_base_request_co.rb +199 -0
- data/lib/integration_api/models/card_business_request_co.rb +181 -0
- data/lib/integration_api/models/card_client_request_co.rb +192 -0
- data/lib/integration_api/models/card_load_request_co.rb +190 -0
- data/lib/integration_api/models/card_load_unload_response_vo.rb +235 -0
- data/lib/integration_api/models/card_pin_request_co.rb +208 -0
- data/lib/integration_api/models/card_replace_response_vo.rb +235 -0
- data/lib/integration_api/models/card_reserve_account_response_vo.rb +235 -0
- data/lib/integration_api/models/card_reserve_transfer_request_co.rb +181 -0
- data/lib/integration_api/models/card_reserve_transfer_response_vo.rb +217 -0
- data/lib/integration_api/models/card_spending_control_request_co.rb +181 -0
- data/lib/integration_api/models/card_spending_control_response_vo.rb +217 -0
- data/lib/integration_api/models/card_token_request_co.rb +242 -0
- data/lib/integration_api/models/card_token_response_vo.rb +278 -0
- data/lib/integration_api/models/card_transaction_response_vo.rb +230 -0
- data/lib/integration_api/models/card_unload_request_co.rb +190 -0
- data/lib/integration_api/models/card_update_pin_request_co.rb +208 -0
- data/lib/integration_api/models/cash.rb +213 -0
- data/lib/integration_api/models/client_address.rb +283 -0
- data/lib/integration_api/models/client_vendor_request_data_vo.rb +340 -0
- data/lib/integration_api/models/contact.rb +356 -0
- data/lib/integration_api/models/contact_address.rb +268 -0
- data/lib/integration_api/models/create_baas_business_co.rb +192 -0
- data/lib/integration_api/models/create_baas_client_co.rb +192 -0
- data/lib/integration_api/models/create_business_response_vo.rb +217 -0
- data/lib/integration_api/models/create_card_client_response_vo.rb +217 -0
- data/lib/integration_api/models/create_user_request.rb +235 -0
- data/lib/integration_api/models/customer_revenue.rb +296 -0
- data/lib/integration_api/models/dividend.rb +199 -0
- data/lib/integration_api/models/dividend_tax.rb +190 -0
- data/lib/integration_api/models/email.rb +359 -0
- data/lib/integration_api/models/email_click.rb +220 -0
- data/lib/integration_api/models/email_open.rb +205 -0
- data/lib/integration_api/models/exchange_public_token_vo.rb +227 -0
- data/lib/integration_api/models/exchange_token_co.rb +235 -0
- data/lib/integration_api/models/financial_statement.rb +362 -0
- data/lib/integration_api/models/get_card_image_response_vo.rb +217 -0
- data/lib/integration_api/models/get_card_pci_details_response_vo.rb +235 -0
- data/lib/integration_api/models/get_card_statement_response_vo.rb +282 -0
- data/lib/integration_api/models/get_card_token_response_vo.rb +278 -0
- data/lib/integration_api/models/get_transactions_response.rb +183 -0
- data/lib/integration_api/models/google_payload.rb +181 -0
- data/lib/integration_api/models/iav_aggregation_response_vo.rb +190 -0
- data/lib/integration_api/models/iav_bank_link_response_vo.rb +192 -0
- data/lib/integration_api/models/iav_request_co.rb +244 -0
- data/lib/integration_api/models/iav_response_vo.rb +199 -0
- data/lib/integration_api/models/iav_token_exchange_vendor_response_vo.rb +172 -0
- data/lib/integration_api/models/iav_vendor_request_co.rb +199 -0
- data/lib/integration_api/models/identification.rb +235 -0
- data/lib/integration_api/models/instrument.rb +199 -0
- data/lib/integration_api/models/investment.rb +283 -0
- data/lib/integration_api/models/invoice.rb +472 -0
- data/lib/integration_api/models/invoice_payment.rb +269 -0
- data/lib/integration_api/models/json_node.rb +172 -0
- data/lib/integration_api/models/kms_config.rb +307 -0
- data/lib/integration_api/models/kyc_request_co.rb +255 -0
- data/lib/integration_api/models/kyc_response_vo.rb +271 -0
- data/lib/integration_api/models/kyc_vendor_request_data_vo.rb +385 -0
- data/lib/integration_api/models/line_items.rb +278 -0
- data/lib/integration_api/models/location.rb +253 -0
- data/lib/integration_api/models/mapstringobject.rb +172 -0
- data/lib/integration_api/models/md_history_item_vo.rb +235 -0
- data/lib/integration_api/models/md_history_request_co.rb +221 -0
- data/lib/integration_api/models/md_history_response_vo.rb +183 -0
- data/lib/integration_api/models/md_quote_item_vo.rb +352 -0
- data/lib/integration_api/models/md_quote_request_co.rb +246 -0
- data/lib/integration_api/models/md_quote_response_vo.rb +183 -0
- data/lib/integration_api/models/merger_acquisition.rb +199 -0
- data/lib/integration_api/models/nucleus_transfer_fields_co.rb +190 -0
- data/lib/integration_api/models/ownership.rb +190 -0
- data/lib/integration_api/models/page_ach_transfer_response_vo.rb +258 -0
- data/lib/integration_api/models/page_kms_config.rb +258 -0
- data/lib/integration_api/models/page_webhook.rb +258 -0
- data/lib/integration_api/models/pageobject.rb +258 -0
- data/lib/integration_api/models/politically_exposed_person_dto.rb +208 -0
- data/lib/integration_api/models/portfolio_asset_size_log.rb +329 -0
- data/lib/integration_api/models/property_value_response_vo.rb +226 -0
- data/lib/integration_api/models/response_entity.rb +233 -0
- data/lib/integration_api/models/rtp_bank_link_request_co.rb +190 -0
- data/lib/integration_api/models/rtp_bank_link_response_vo.rb +235 -0
- data/lib/integration_api/models/rtp_transfer_request_co.rb +190 -0
- data/lib/integration_api/models/rtp_transfer_response_vo.rb +226 -0
- data/lib/integration_api/models/samsung_payload.rb +181 -0
- data/lib/integration_api/models/sms.rb +335 -0
- data/lib/integration_api/models/sms_response_vo.rb +226 -0
- data/lib/integration_api/models/smsvo.rb +217 -0
- data/lib/integration_api/models/smtp_response_vo.rb +226 -0
- data/lib/integration_api/models/smtp_vo.rb +273 -0
- data/lib/integration_api/models/sort.rb +233 -0
- data/lib/integration_api/models/spending_control_vendor_request_data_vo.rb +255 -0
- data/lib/integration_api/models/stat.rb +203 -0
- data/lib/integration_api/models/transaction.rb +370 -0
- data/lib/integration_api/models/update_baas_business_co.rb +183 -0
- data/lib/integration_api/models/update_baas_client_co.rb +183 -0
- data/lib/integration_api/models/update_business_response_vo.rb +217 -0
- data/lib/integration_api/models/update_card_client_response_vo.rb +217 -0
- data/lib/integration_api/models/user_response_interface.rb +172 -0
- data/lib/integration_api/models/user_response_vo.rb +235 -0
- data/lib/integration_api/models/vendor_access_config_vo.rb +202 -0
- data/lib/integration_api/models/webhook.rb +277 -0
- data/lib/integration_api/models/widget_url_vo.rb +190 -0
- data/lib/integration_api/models/wire_bank_link_request_co.rb +190 -0
- data/lib/integration_api/models/wire_bank_link_response_vo.rb +235 -0
- data/lib/integration_api/models/wire_transfer_request_co.rb +190 -0
- data/lib/integration_api/models/wire_transfer_response_vo.rb +226 -0
- data/lib/integration_api/models/zillow_property_vendor_response_vo.rb +217 -0
- data/lib/integration_api/version.rb +15 -0
- data/spec/api/accounting_api_spec.rb +234 -0
- data/spec/api/ach_api_spec.rb +259 -0
- data/spec/api/aggregation_api_spec.rb +172 -0
- data/spec/api/async_api_spec.rb +88 -0
- data/spec/api/baas_api_spec.rb +143 -0
- data/spec/api/brokerage_api_spec.rb +264 -0
- data/spec/api/card_api_spec.rb +385 -0
- data/spec/api/iav_api_spec.rb +73 -0
- data/spec/api/kms_api_spec.rb +100 -0
- data/spec/api/kyc_api_spec.rb +63 -0
- data/spec/api/market_data_api_spec.rb +57 -0
- data/spec/api/rtp_api_spec.rb +134 -0
- data/spec/api/sms_api_spec.rb +59 -0
- data/spec/api/smtp_api_spec.rb +59 -0
- data/spec/api/utils_api_spec.rb +104 -0
- data/spec/api/webhook_api_spec.rb +100 -0
- data/spec/api/wire_api_spec.rb +134 -0
- data/spec/api_client_spec.rb +243 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/accounting_customer_response_vo_spec.rb +53 -0
- data/spec/models/accounting_customer_revenue_response_vo_spec.rb +53 -0
- data/spec/models/accounting_final_response_vo_spec.rb +83 -0
- data/spec/models/accounting_invoice_payment_response_vo_spec.rb +53 -0
- data/spec/models/accounting_invoice_response_vo_spec.rb +53 -0
- data/spec/models/accounting_stats_response_vo_spec.rb +53 -0
- data/spec/models/ach_balance_response_vo_spec.rb +71 -0
- data/spec/models/ach_bank_link_request_co_spec.rb +53 -0
- data/spec/models/ach_bank_link_response_vo_spec.rb +77 -0
- data/spec/models/ach_beneficial_owner_request_co_spec.rb +47 -0
- data/spec/models/ach_beneficial_owner_response_vo_spec.rb +59 -0
- data/spec/models/ach_business_balance_response_vo_spec.rb +71 -0
- data/spec/models/ach_business_request_co_spec.rb +53 -0
- data/spec/models/ach_business_response_vo_spec.rb +65 -0
- data/spec/models/ach_card_link_request_co_spec.rb +47 -0
- data/spec/models/ach_card_link_response_vo_spec.rb +65 -0
- data/spec/models/ach_card_load_response_vo_spec.rb +47 -0
- data/spec/models/ach_card_request_co_spec.rb +41 -0
- data/spec/models/ach_card_reserve_request_co_spec.rb +41 -0
- data/spec/models/ach_card_reserve_response_vo_spec.rb +65 -0
- data/spec/models/ach_card_response_vo_spec.rb +65 -0
- data/spec/models/ach_client_request_co_spec.rb +53 -0
- data/spec/models/ach_client_response_vo_spec.rb +65 -0
- data/spec/models/ach_reserve_link_request_co_spec.rb +41 -0
- data/spec/models/ach_reserve_link_response_vo_spec.rb +65 -0
- data/spec/models/ach_status_response_vo_spec.rb +75 -0
- data/spec/models/ach_transfer_request_co_spec.rb +53 -0
- data/spec/models/ach_transfer_response_vo_spec.rb +83 -0
- data/spec/models/acquiree_spec.rb +53 -0
- data/spec/models/acquirer_spec.rb +53 -0
- data/spec/models/address_spec.rb +87 -0
- data/spec/models/aggregation_account_balance_response_vo_spec.rb +59 -0
- data/spec/models/aggregation_account_balance_spec.rb +101 -0
- data/spec/models/aggregation_account_holding_response_internal_object_vo_spec.rb +53 -0
- data/spec/models/aggregation_account_holding_response_vo_spec.rb +59 -0
- data/spec/models/aggregation_account_holding_spec.rb +155 -0
- data/spec/models/aggregation_account_response_internal_object_vo_spec.rb +53 -0
- data/spec/models/aggregation_account_response_vo_spec.rb +59 -0
- data/spec/models/aggregation_account_spec.rb +221 -0
- data/spec/models/aggregation_account_transaction_response_internal_object_vo_spec.rb +53 -0
- data/spec/models/aggregation_account_transaction_response_vo_spec.rb +65 -0
- data/spec/models/aggregation_account_transaction_spec.rb +125 -0
- data/spec/models/aggregation_accounts_response_vo_spec.rb +59 -0
- data/spec/models/aggregation_request_object_spec.rb +71 -0
- data/spec/models/aggregation_vendor_request_co_spec.rb +53 -0
- data/spec/models/apple_payload_spec.rb +53 -0
- data/spec/models/async_transaction_spec.rb +65 -0
- data/spec/models/async_transaction_vo_spec.rb +53 -0
- data/spec/models/attachment_vo_spec.rb +53 -0
- data/spec/models/baas_account_co_spec.rb +47 -0
- data/spec/models/baas_account_vo_spec.rb +89 -0
- data/spec/models/baas_balance_vo_spec.rb +65 -0
- data/spec/models/baas_business_vo_spec.rb +77 -0
- data/spec/models/baas_client_vo_spec.rb +77 -0
- data/spec/models/baas_statement_vo_spec.rb +71 -0
- data/spec/models/baas_statements_vo_spec.rb +53 -0
- data/spec/models/baas_sub_account_co_spec.rb +41 -0
- data/spec/models/baas_sub_account_vo_spec.rb +83 -0
- data/spec/models/baas_transactions_vo_spec.rb +65 -0
- data/spec/models/balances_spec.rb +65 -0
- data/spec/models/bank_credit_spec.rb +95 -0
- data/spec/models/bank_link_response_internal_object_vo_spec.rb +53 -0
- data/spec/models/bank_link_spec.rb +179 -0
- data/spec/models/bank_link_vendor_data_vo_spec.rb +47 -0
- data/spec/models/base_response_vo_spec.rb +53 -0
- data/spec/models/brokerage_account_co_spec.rb +47 -0
- data/spec/models/brokerage_account_vo_spec.rb +65 -0
- data/spec/models/brokerage_balance_vo_spec.rb +71 -0
- data/spec/models/brokerage_bank_link_co_spec.rb +41 -0
- data/spec/models/brokerage_bank_link_vo_spec.rb +71 -0
- data/spec/models/brokerage_create_client_co_spec.rb +47 -0
- data/spec/models/brokerage_create_client_vo_spec.rb +65 -0
- data/spec/models/brokerage_deposit_co_spec.rb +41 -0
- data/spec/models/brokerage_deposit_vo_spec.rb +65 -0
- data/spec/models/brokerage_document_co_spec.rb +47 -0
- data/spec/models/brokerage_document_vo_spec.rb +71 -0
- data/spec/models/brokerage_holding_vo_spec.rb +71 -0
- data/spec/models/brokerage_order_co_spec.rb +41 -0
- data/spec/models/brokerage_order_vo_spec.rb +71 -0
- data/spec/models/brokerage_performance_vo_spec.rb +71 -0
- data/spec/models/brokerage_securities_vo_spec.rb +65 -0
- data/spec/models/brokerage_statement_vo_spec.rb +53 -0
- data/spec/models/brokerage_transaction_vo_spec.rb +71 -0
- data/spec/models/brokerage_update_client_co_spec.rb +41 -0
- data/spec/models/brokerage_update_client_vo_spec.rb +77 -0
- data/spec/models/brokerage_withdrawal_co_spec.rb +41 -0
- data/spec/models/brokerage_withdrawal_vo_spec.rb +65 -0
- data/spec/models/business_address_spec.rb +83 -0
- data/spec/models/business_status_response_vo_spec.rb +65 -0
- data/spec/models/business_vendor_request_data_vo_spec.rb +125 -0
- data/spec/models/card_auto_reload_request_co_spec.rb +59 -0
- data/spec/models/card_auto_reload_response_vo_spec.rb +71 -0
- data/spec/models/card_balance_response_vo_spec.rb +71 -0
- data/spec/models/card_base_request_co_spec.rb +53 -0
- data/spec/models/card_business_request_co_spec.rb +41 -0
- data/spec/models/card_client_request_co_spec.rb +47 -0
- data/spec/models/card_load_request_co_spec.rb +47 -0
- data/spec/models/card_load_unload_response_vo_spec.rb +77 -0
- data/spec/models/card_pin_request_co_spec.rb +59 -0
- data/spec/models/card_replace_response_vo_spec.rb +77 -0
- data/spec/models/card_reserve_account_response_vo_spec.rb +77 -0
- data/spec/models/card_reserve_transfer_request_co_spec.rb +41 -0
- data/spec/models/card_reserve_transfer_response_vo_spec.rb +65 -0
- data/spec/models/card_spending_control_request_co_spec.rb +41 -0
- data/spec/models/card_spending_control_response_vo_spec.rb +65 -0
- data/spec/models/card_token_request_co_spec.rb +63 -0
- data/spec/models/card_token_response_vo_spec.rb +87 -0
- data/spec/models/card_transaction_response_vo_spec.rb +71 -0
- data/spec/models/card_unload_request_co_spec.rb +47 -0
- data/spec/models/card_update_pin_request_co_spec.rb +59 -0
- data/spec/models/cash_spec.rb +53 -0
- data/spec/models/client_address_spec.rb +87 -0
- data/spec/models/client_vendor_request_data_vo_spec.rb +143 -0
- data/spec/models/contact_address_spec.rb +77 -0
- data/spec/models/contact_spec.rb +143 -0
- data/spec/models/create_baas_business_co_spec.rb +47 -0
- data/spec/models/create_baas_client_co_spec.rb +47 -0
- data/spec/models/create_business_response_vo_spec.rb +65 -0
- data/spec/models/create_card_client_response_vo_spec.rb +65 -0
- data/spec/models/create_user_request_spec.rb +77 -0
- data/spec/models/customer_revenue_spec.rb +95 -0
- data/spec/models/dividend_spec.rb +53 -0
- data/spec/models/dividend_tax_spec.rb +47 -0
- data/spec/models/email_click_spec.rb +59 -0
- data/spec/models/email_open_spec.rb +53 -0
- data/spec/models/email_spec.rb +149 -0
- data/spec/models/exchange_public_token_vo_spec.rb +71 -0
- data/spec/models/exchange_token_co_spec.rb +77 -0
- data/spec/models/financial_statement_spec.rb +137 -0
- data/spec/models/get_card_image_response_vo_spec.rb +65 -0
- data/spec/models/get_card_pci_details_response_vo_spec.rb +77 -0
- data/spec/models/get_card_statement_response_vo_spec.rb +107 -0
- data/spec/models/get_card_token_response_vo_spec.rb +87 -0
- data/spec/models/get_transactions_response_spec.rb +41 -0
- data/spec/models/google_payload_spec.rb +41 -0
- data/spec/models/iav_aggregation_response_vo_spec.rb +47 -0
- data/spec/models/iav_bank_link_response_vo_spec.rb +47 -0
- data/spec/models/iav_request_co_spec.rb +83 -0
- data/spec/models/iav_response_vo_spec.rb +53 -0
- data/spec/models/iav_token_exchange_vendor_response_vo_spec.rb +35 -0
- data/spec/models/iav_vendor_request_co_spec.rb +53 -0
- data/spec/models/identification_spec.rb +77 -0
- data/spec/models/instrument_spec.rb +53 -0
- data/spec/models/investment_spec.rb +89 -0
- data/spec/models/invoice_payment_spec.rb +83 -0
- data/spec/models/invoice_spec.rb +197 -0
- data/spec/models/json_node_spec.rb +35 -0
- data/spec/models/kms_config_spec.rb +107 -0
- data/spec/models/kyc_request_co_spec.rb +89 -0
- data/spec/models/kyc_response_vo_spec.rb +101 -0
- data/spec/models/kyc_vendor_request_data_vo_spec.rb +173 -0
- data/spec/models/line_items_spec.rb +83 -0
- data/spec/models/location_spec.rb +83 -0
- data/spec/models/mapstringobject_spec.rb +35 -0
- data/spec/models/md_history_item_vo_spec.rb +77 -0
- data/spec/models/md_history_request_co_spec.rb +65 -0
- data/spec/models/md_history_response_vo_spec.rb +41 -0
- data/spec/models/md_quote_item_vo_spec.rb +155 -0
- data/spec/models/md_quote_request_co_spec.rb +63 -0
- data/spec/models/md_quote_response_vo_spec.rb +41 -0
- data/spec/models/merger_acquisition_spec.rb +53 -0
- data/spec/models/nucleus_transfer_fields_co_spec.rb +47 -0
- data/spec/models/ownership_spec.rb +47 -0
- data/spec/models/page_ach_transfer_response_vo_spec.rb +89 -0
- data/spec/models/page_kms_config_spec.rb +89 -0
- data/spec/models/page_webhook_spec.rb +89 -0
- data/spec/models/pageobject_spec.rb +89 -0
- data/spec/models/politically_exposed_person_dto_spec.rb +59 -0
- data/spec/models/portfolio_asset_size_log_spec.rb +113 -0
- data/spec/models/property_value_response_vo_spec.rb +71 -0
- data/spec/models/response_entity_spec.rb +57 -0
- data/spec/models/rtp_bank_link_request_co_spec.rb +47 -0
- data/spec/models/rtp_bank_link_response_vo_spec.rb +77 -0
- data/spec/models/rtp_transfer_request_co_spec.rb +47 -0
- data/spec/models/rtp_transfer_response_vo_spec.rb +71 -0
- data/spec/models/samsung_payload_spec.rb +41 -0
- data/spec/models/sms_response_vo_spec.rb +71 -0
- data/spec/models/sms_spec.rb +137 -0
- data/spec/models/smsvo_spec.rb +65 -0
- data/spec/models/smtp_response_vo_spec.rb +71 -0
- data/spec/models/smtp_vo_spec.rb +101 -0
- data/spec/models/sort_spec.rb +71 -0
- data/spec/models/spending_control_vendor_request_data_vo_spec.rb +89 -0
- data/spec/models/stat_spec.rb +47 -0
- data/spec/models/transaction_spec.rb +167 -0
- data/spec/models/update_baas_business_co_spec.rb +41 -0
- data/spec/models/update_baas_client_co_spec.rb +41 -0
- data/spec/models/update_business_response_vo_spec.rb +65 -0
- data/spec/models/update_card_client_response_vo_spec.rb +65 -0
- data/spec/models/user_response_interface_spec.rb +35 -0
- data/spec/models/user_response_vo_spec.rb +77 -0
- data/spec/models/vendor_access_config_vo_spec.rb +53 -0
- data/spec/models/webhook_spec.rb +87 -0
- data/spec/models/widget_url_vo_spec.rb +47 -0
- data/spec/models/wire_bank_link_request_co_spec.rb +47 -0
- data/spec/models/wire_bank_link_response_vo_spec.rb +77 -0
- data/spec/models/wire_transfer_request_co_spec.rb +47 -0
- data/spec/models/wire_transfer_response_vo_spec.rb +71 -0
- data/spec/models/zillow_property_vendor_response_vo_spec.rb +65 -0
- data/spec/spec_helper.rb +111 -0
- metadata +909 -0
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Hydrogen Integration API
|
|
3
|
+
|
|
4
|
+
#The Hydrogen Integration API
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 1.3.1
|
|
7
|
+
Contact: info@hydrogenplatform.com
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.21
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'uri'
|
|
14
|
+
|
|
15
|
+
module IntegrationApi
|
|
16
|
+
class KYCApi
|
|
17
|
+
attr_accessor :api_client
|
|
18
|
+
|
|
19
|
+
def initialize(api_client = ApiClient.default)
|
|
20
|
+
@api_client = api_client
|
|
21
|
+
end
|
|
22
|
+
# Do kyc for the client.
|
|
23
|
+
# Do kyc for the client.
|
|
24
|
+
# @param kyc_request_co kycRequestCO
|
|
25
|
+
# @param [Hash] opts the optional parameters
|
|
26
|
+
# @return [KycResponseVo]
|
|
27
|
+
def create_kyc_using_post(kyc_request_co, opts = {})
|
|
28
|
+
data, _status_code, _headers = create_kyc_using_post_with_http_info(kyc_request_co, opts)
|
|
29
|
+
data
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
# Do kyc for the client.
|
|
33
|
+
# Do kyc for the client.
|
|
34
|
+
# @param kyc_request_co kycRequestCO
|
|
35
|
+
# @param [Hash] opts the optional parameters
|
|
36
|
+
# @return [Array<(KycResponseVo, Fixnum, Hash)>] KycResponseVo data, response status code and response headers
|
|
37
|
+
def create_kyc_using_post_with_http_info(kyc_request_co, opts = {})
|
|
38
|
+
if @api_client.config.debugging
|
|
39
|
+
@api_client.config.logger.debug 'Calling API: KYCApi.create_kyc_using_post ...'
|
|
40
|
+
end
|
|
41
|
+
# verify the required parameter 'kyc_request_co' is set
|
|
42
|
+
if @api_client.config.client_side_validation && kyc_request_co.nil?
|
|
43
|
+
fail ArgumentError, "Missing the required parameter 'kyc_request_co' when calling KYCApi.create_kyc_using_post"
|
|
44
|
+
end
|
|
45
|
+
# resource path
|
|
46
|
+
local_var_path = '/kyc'
|
|
47
|
+
|
|
48
|
+
# query parameters
|
|
49
|
+
query_params = {}
|
|
50
|
+
|
|
51
|
+
# header parameters
|
|
52
|
+
header_params = {}
|
|
53
|
+
# HTTP header 'Accept' (if needed)
|
|
54
|
+
header_params['Accept'] = @api_client.select_header_accept(['*/*'])
|
|
55
|
+
# HTTP header 'Content-Type'
|
|
56
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
|
57
|
+
|
|
58
|
+
# form parameters
|
|
59
|
+
form_params = {}
|
|
60
|
+
|
|
61
|
+
# http body (model)
|
|
62
|
+
post_body = @api_client.object_to_http_body(kyc_request_co)
|
|
63
|
+
auth_names = ['oauth2']
|
|
64
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
|
65
|
+
:header_params => header_params,
|
|
66
|
+
:query_params => query_params,
|
|
67
|
+
:form_params => form_params,
|
|
68
|
+
:body => post_body,
|
|
69
|
+
:auth_names => auth_names,
|
|
70
|
+
:return_type => 'KycResponseVo')
|
|
71
|
+
if @api_client.config.debugging
|
|
72
|
+
@api_client.config.logger.debug "API called: KYCApi#create_kyc_using_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
73
|
+
end
|
|
74
|
+
return data, status_code, headers
|
|
75
|
+
end
|
|
76
|
+
# Fetch kyc_status for the given nucleus_client_id
|
|
77
|
+
# Fetch kyc_status for the given nucleus_client_id
|
|
78
|
+
# @param [Hash] opts the optional parameters
|
|
79
|
+
# @option opts [BOOLEAN] :get_latest get_latest (default to false)
|
|
80
|
+
# @option opts [String] :kyc_type kyc_type (default to all)
|
|
81
|
+
# @option opts [String] :nucleus_business_id nucleus_business_id
|
|
82
|
+
# @option opts [String] :nucleus_client_id nucleus_client_id
|
|
83
|
+
# @option opts [String] :product product (default to atom)
|
|
84
|
+
# @return [Array<KycResponseVo>]
|
|
85
|
+
def get_kyc_status_using_get(opts = {})
|
|
86
|
+
data, _status_code, _headers = get_kyc_status_using_get_with_http_info(opts)
|
|
87
|
+
data
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
# Fetch kyc_status for the given nucleus_client_id
|
|
91
|
+
# Fetch kyc_status for the given nucleus_client_id
|
|
92
|
+
# @param [Hash] opts the optional parameters
|
|
93
|
+
# @option opts [BOOLEAN] :get_latest get_latest
|
|
94
|
+
# @option opts [String] :kyc_type kyc_type
|
|
95
|
+
# @option opts [String] :nucleus_business_id nucleus_business_id
|
|
96
|
+
# @option opts [String] :nucleus_client_id nucleus_client_id
|
|
97
|
+
# @option opts [String] :product product
|
|
98
|
+
# @return [Array<(Array<KycResponseVo>, Fixnum, Hash)>] Array<KycResponseVo> data, response status code and response headers
|
|
99
|
+
def get_kyc_status_using_get_with_http_info(opts = {})
|
|
100
|
+
if @api_client.config.debugging
|
|
101
|
+
@api_client.config.logger.debug 'Calling API: KYCApi.get_kyc_status_using_get ...'
|
|
102
|
+
end
|
|
103
|
+
# resource path
|
|
104
|
+
local_var_path = '/kyc_status'
|
|
105
|
+
|
|
106
|
+
# query parameters
|
|
107
|
+
query_params = {}
|
|
108
|
+
query_params[:'get_latest'] = opts[:'get_latest'] if !opts[:'get_latest'].nil?
|
|
109
|
+
query_params[:'kyc_type'] = opts[:'kyc_type'] if !opts[:'kyc_type'].nil?
|
|
110
|
+
query_params[:'nucleus_business_id'] = opts[:'nucleus_business_id'] if !opts[:'nucleus_business_id'].nil?
|
|
111
|
+
query_params[:'nucleus_client_id'] = opts[:'nucleus_client_id'] if !opts[:'nucleus_client_id'].nil?
|
|
112
|
+
query_params[:'product'] = opts[:'product'] if !opts[:'product'].nil?
|
|
113
|
+
|
|
114
|
+
# header parameters
|
|
115
|
+
header_params = {}
|
|
116
|
+
# HTTP header 'Accept' (if needed)
|
|
117
|
+
header_params['Accept'] = @api_client.select_header_accept(['*/*'])
|
|
118
|
+
|
|
119
|
+
# form parameters
|
|
120
|
+
form_params = {}
|
|
121
|
+
|
|
122
|
+
# http body (model)
|
|
123
|
+
post_body = nil
|
|
124
|
+
auth_names = ['oauth2']
|
|
125
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
|
126
|
+
:header_params => header_params,
|
|
127
|
+
:query_params => query_params,
|
|
128
|
+
:form_params => form_params,
|
|
129
|
+
:body => post_body,
|
|
130
|
+
:auth_names => auth_names,
|
|
131
|
+
:return_type => 'Array<KycResponseVo>')
|
|
132
|
+
if @api_client.config.debugging
|
|
133
|
+
@api_client.config.logger.debug "API called: KYCApi#get_kyc_status_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
134
|
+
end
|
|
135
|
+
return data, status_code, headers
|
|
136
|
+
end
|
|
137
|
+
end
|
|
138
|
+
end
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Hydrogen Integration API
|
|
3
|
+
|
|
4
|
+
#The Hydrogen Integration API
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 1.3.1
|
|
7
|
+
Contact: info@hydrogenplatform.com
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.21
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'uri'
|
|
14
|
+
|
|
15
|
+
module IntegrationApi
|
|
16
|
+
class MarketDataApi
|
|
17
|
+
attr_accessor :api_client
|
|
18
|
+
|
|
19
|
+
def initialize(api_client = ApiClient.default)
|
|
20
|
+
@api_client = api_client
|
|
21
|
+
end
|
|
22
|
+
# Create historical market data
|
|
23
|
+
# @param history_request historyRequest
|
|
24
|
+
# @param [Hash] opts the optional parameters
|
|
25
|
+
# @return [MdHistoryResponseVO]
|
|
26
|
+
def create_market_data_historical_using_post(history_request, opts = {})
|
|
27
|
+
data, _status_code, _headers = create_market_data_historical_using_post_with_http_info(history_request, opts)
|
|
28
|
+
data
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
# Create historical market data
|
|
32
|
+
# @param history_request historyRequest
|
|
33
|
+
# @param [Hash] opts the optional parameters
|
|
34
|
+
# @return [Array<(MdHistoryResponseVO, Fixnum, Hash)>] MdHistoryResponseVO data, response status code and response headers
|
|
35
|
+
def create_market_data_historical_using_post_with_http_info(history_request, opts = {})
|
|
36
|
+
if @api_client.config.debugging
|
|
37
|
+
@api_client.config.logger.debug 'Calling API: MarketDataApi.create_market_data_historical_using_post ...'
|
|
38
|
+
end
|
|
39
|
+
# verify the required parameter 'history_request' is set
|
|
40
|
+
if @api_client.config.client_side_validation && history_request.nil?
|
|
41
|
+
fail ArgumentError, "Missing the required parameter 'history_request' when calling MarketDataApi.create_market_data_historical_using_post"
|
|
42
|
+
end
|
|
43
|
+
# resource path
|
|
44
|
+
local_var_path = '/market_data/historical'
|
|
45
|
+
|
|
46
|
+
# query parameters
|
|
47
|
+
query_params = {}
|
|
48
|
+
|
|
49
|
+
# header parameters
|
|
50
|
+
header_params = {}
|
|
51
|
+
# HTTP header 'Accept' (if needed)
|
|
52
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
|
53
|
+
# HTTP header 'Content-Type'
|
|
54
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
|
55
|
+
|
|
56
|
+
# form parameters
|
|
57
|
+
form_params = {}
|
|
58
|
+
|
|
59
|
+
# http body (model)
|
|
60
|
+
post_body = @api_client.object_to_http_body(history_request)
|
|
61
|
+
auth_names = ['oauth2']
|
|
62
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
|
63
|
+
:header_params => header_params,
|
|
64
|
+
:query_params => query_params,
|
|
65
|
+
:form_params => form_params,
|
|
66
|
+
:body => post_body,
|
|
67
|
+
:auth_names => auth_names,
|
|
68
|
+
:return_type => 'MdHistoryResponseVO')
|
|
69
|
+
if @api_client.config.debugging
|
|
70
|
+
@api_client.config.logger.debug "API called: MarketDataApi#create_market_data_historical_using_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
71
|
+
end
|
|
72
|
+
return data, status_code, headers
|
|
73
|
+
end
|
|
74
|
+
# Create quote market data
|
|
75
|
+
# @param quote_request quoteRequest
|
|
76
|
+
# @param [Hash] opts the optional parameters
|
|
77
|
+
# @return [MdQuoteResponseVO]
|
|
78
|
+
def create_market_data_quote_using_post(quote_request, opts = {})
|
|
79
|
+
data, _status_code, _headers = create_market_data_quote_using_post_with_http_info(quote_request, opts)
|
|
80
|
+
data
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
# Create quote market data
|
|
84
|
+
# @param quote_request quoteRequest
|
|
85
|
+
# @param [Hash] opts the optional parameters
|
|
86
|
+
# @return [Array<(MdQuoteResponseVO, Fixnum, Hash)>] MdQuoteResponseVO data, response status code and response headers
|
|
87
|
+
def create_market_data_quote_using_post_with_http_info(quote_request, opts = {})
|
|
88
|
+
if @api_client.config.debugging
|
|
89
|
+
@api_client.config.logger.debug 'Calling API: MarketDataApi.create_market_data_quote_using_post ...'
|
|
90
|
+
end
|
|
91
|
+
# verify the required parameter 'quote_request' is set
|
|
92
|
+
if @api_client.config.client_side_validation && quote_request.nil?
|
|
93
|
+
fail ArgumentError, "Missing the required parameter 'quote_request' when calling MarketDataApi.create_market_data_quote_using_post"
|
|
94
|
+
end
|
|
95
|
+
# resource path
|
|
96
|
+
local_var_path = '/market_data/quote'
|
|
97
|
+
|
|
98
|
+
# query parameters
|
|
99
|
+
query_params = {}
|
|
100
|
+
|
|
101
|
+
# header parameters
|
|
102
|
+
header_params = {}
|
|
103
|
+
# HTTP header 'Accept' (if needed)
|
|
104
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
|
105
|
+
# HTTP header 'Content-Type'
|
|
106
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
|
107
|
+
|
|
108
|
+
# form parameters
|
|
109
|
+
form_params = {}
|
|
110
|
+
|
|
111
|
+
# http body (model)
|
|
112
|
+
post_body = @api_client.object_to_http_body(quote_request)
|
|
113
|
+
auth_names = ['oauth2']
|
|
114
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
|
115
|
+
:header_params => header_params,
|
|
116
|
+
:query_params => query_params,
|
|
117
|
+
:form_params => form_params,
|
|
118
|
+
:body => post_body,
|
|
119
|
+
:auth_names => auth_names,
|
|
120
|
+
:return_type => 'MdQuoteResponseVO')
|
|
121
|
+
if @api_client.config.debugging
|
|
122
|
+
@api_client.config.logger.debug "API called: MarketDataApi#create_market_data_quote_using_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
123
|
+
end
|
|
124
|
+
return data, status_code, headers
|
|
125
|
+
end
|
|
126
|
+
end
|
|
127
|
+
end
|
|
@@ -0,0 +1,479 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Hydrogen Integration API
|
|
3
|
+
|
|
4
|
+
#The Hydrogen Integration API
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 1.3.1
|
|
7
|
+
Contact: info@hydrogenplatform.com
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.21
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'uri'
|
|
14
|
+
|
|
15
|
+
module IntegrationApi
|
|
16
|
+
class RTPApi
|
|
17
|
+
attr_accessor :api_client
|
|
18
|
+
|
|
19
|
+
def initialize(api_client = ApiClient.default)
|
|
20
|
+
@api_client = api_client
|
|
21
|
+
end
|
|
22
|
+
# Cancel the RTP transfer
|
|
23
|
+
# @param nucleus_funding_id nucleus_funding_id
|
|
24
|
+
# @param [Hash] opts the optional parameters
|
|
25
|
+
# @return [RtpTransferResponseVO]
|
|
26
|
+
def cancel_rtp_transfer_using_delete(nucleus_funding_id, opts = {})
|
|
27
|
+
data, _status_code, _headers = cancel_rtp_transfer_using_delete_with_http_info(nucleus_funding_id, opts)
|
|
28
|
+
data
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
# Cancel the RTP transfer
|
|
32
|
+
# @param nucleus_funding_id nucleus_funding_id
|
|
33
|
+
# @param [Hash] opts the optional parameters
|
|
34
|
+
# @return [Array<(RtpTransferResponseVO, Fixnum, Hash)>] RtpTransferResponseVO data, response status code and response headers
|
|
35
|
+
def cancel_rtp_transfer_using_delete_with_http_info(nucleus_funding_id, opts = {})
|
|
36
|
+
if @api_client.config.debugging
|
|
37
|
+
@api_client.config.logger.debug 'Calling API: RTPApi.cancel_rtp_transfer_using_delete ...'
|
|
38
|
+
end
|
|
39
|
+
# verify the required parameter 'nucleus_funding_id' is set
|
|
40
|
+
if @api_client.config.client_side_validation && nucleus_funding_id.nil?
|
|
41
|
+
fail ArgumentError, "Missing the required parameter 'nucleus_funding_id' when calling RTPApi.cancel_rtp_transfer_using_delete"
|
|
42
|
+
end
|
|
43
|
+
# resource path
|
|
44
|
+
local_var_path = '/rtp/{nucleus_funding_id}'.sub('{' + 'nucleus_funding_id' + '}', nucleus_funding_id.to_s)
|
|
45
|
+
|
|
46
|
+
# query parameters
|
|
47
|
+
query_params = {}
|
|
48
|
+
|
|
49
|
+
# header parameters
|
|
50
|
+
header_params = {}
|
|
51
|
+
# HTTP header 'Accept' (if needed)
|
|
52
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
|
53
|
+
|
|
54
|
+
# form parameters
|
|
55
|
+
form_params = {}
|
|
56
|
+
|
|
57
|
+
# http body (model)
|
|
58
|
+
post_body = nil
|
|
59
|
+
auth_names = ['oauth2']
|
|
60
|
+
data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
|
|
61
|
+
:header_params => header_params,
|
|
62
|
+
:query_params => query_params,
|
|
63
|
+
:form_params => form_params,
|
|
64
|
+
:body => post_body,
|
|
65
|
+
:auth_names => auth_names,
|
|
66
|
+
:return_type => 'RtpTransferResponseVO')
|
|
67
|
+
if @api_client.config.debugging
|
|
68
|
+
@api_client.config.logger.debug "API called: RTPApi#cancel_rtp_transfer_using_delete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
69
|
+
end
|
|
70
|
+
return data, status_code, headers
|
|
71
|
+
end
|
|
72
|
+
# Create bank link
|
|
73
|
+
# @param request request
|
|
74
|
+
# @param [Hash] opts the optional parameters
|
|
75
|
+
# @return [RtpBankLinkResponseVO]
|
|
76
|
+
def create_rtp_bank_link_using_post(request, opts = {})
|
|
77
|
+
data, _status_code, _headers = create_rtp_bank_link_using_post_with_http_info(request, opts)
|
|
78
|
+
data
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
# Create bank link
|
|
82
|
+
# @param request request
|
|
83
|
+
# @param [Hash] opts the optional parameters
|
|
84
|
+
# @return [Array<(RtpBankLinkResponseVO, Fixnum, Hash)>] RtpBankLinkResponseVO data, response status code and response headers
|
|
85
|
+
def create_rtp_bank_link_using_post_with_http_info(request, opts = {})
|
|
86
|
+
if @api_client.config.debugging
|
|
87
|
+
@api_client.config.logger.debug 'Calling API: RTPApi.create_rtp_bank_link_using_post ...'
|
|
88
|
+
end
|
|
89
|
+
# verify the required parameter 'request' is set
|
|
90
|
+
if @api_client.config.client_side_validation && request.nil?
|
|
91
|
+
fail ArgumentError, "Missing the required parameter 'request' when calling RTPApi.create_rtp_bank_link_using_post"
|
|
92
|
+
end
|
|
93
|
+
# resource path
|
|
94
|
+
local_var_path = '/rtp/bank_link'
|
|
95
|
+
|
|
96
|
+
# query parameters
|
|
97
|
+
query_params = {}
|
|
98
|
+
|
|
99
|
+
# header parameters
|
|
100
|
+
header_params = {}
|
|
101
|
+
# HTTP header 'Accept' (if needed)
|
|
102
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
|
103
|
+
# HTTP header 'Content-Type'
|
|
104
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
|
105
|
+
|
|
106
|
+
# form parameters
|
|
107
|
+
form_params = {}
|
|
108
|
+
|
|
109
|
+
# http body (model)
|
|
110
|
+
post_body = @api_client.object_to_http_body(request)
|
|
111
|
+
auth_names = ['oauth2']
|
|
112
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
|
113
|
+
:header_params => header_params,
|
|
114
|
+
:query_params => query_params,
|
|
115
|
+
:form_params => form_params,
|
|
116
|
+
:body => post_body,
|
|
117
|
+
:auth_names => auth_names,
|
|
118
|
+
:return_type => 'RtpBankLinkResponseVO')
|
|
119
|
+
if @api_client.config.debugging
|
|
120
|
+
@api_client.config.logger.debug "API called: RTPApi#create_rtp_bank_link_using_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
121
|
+
end
|
|
122
|
+
return data, status_code, headers
|
|
123
|
+
end
|
|
124
|
+
# Delete bank link
|
|
125
|
+
# @param nucleus_bank_link_id nucleus_bank_link_id
|
|
126
|
+
# @param [Hash] opts the optional parameters
|
|
127
|
+
# @return [RtpBankLinkResponseVO]
|
|
128
|
+
def delete_rtp_bank_link_using_delete(nucleus_bank_link_id, opts = {})
|
|
129
|
+
data, _status_code, _headers = delete_rtp_bank_link_using_delete_with_http_info(nucleus_bank_link_id, opts)
|
|
130
|
+
data
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
# Delete bank link
|
|
134
|
+
# @param nucleus_bank_link_id nucleus_bank_link_id
|
|
135
|
+
# @param [Hash] opts the optional parameters
|
|
136
|
+
# @return [Array<(RtpBankLinkResponseVO, Fixnum, Hash)>] RtpBankLinkResponseVO data, response status code and response headers
|
|
137
|
+
def delete_rtp_bank_link_using_delete_with_http_info(nucleus_bank_link_id, opts = {})
|
|
138
|
+
if @api_client.config.debugging
|
|
139
|
+
@api_client.config.logger.debug 'Calling API: RTPApi.delete_rtp_bank_link_using_delete ...'
|
|
140
|
+
end
|
|
141
|
+
# verify the required parameter 'nucleus_bank_link_id' is set
|
|
142
|
+
if @api_client.config.client_side_validation && nucleus_bank_link_id.nil?
|
|
143
|
+
fail ArgumentError, "Missing the required parameter 'nucleus_bank_link_id' when calling RTPApi.delete_rtp_bank_link_using_delete"
|
|
144
|
+
end
|
|
145
|
+
# resource path
|
|
146
|
+
local_var_path = '/rtp/bank_link/{nucleus_bank_link_id}'.sub('{' + 'nucleus_bank_link_id' + '}', nucleus_bank_link_id.to_s)
|
|
147
|
+
|
|
148
|
+
# query parameters
|
|
149
|
+
query_params = {}
|
|
150
|
+
|
|
151
|
+
# header parameters
|
|
152
|
+
header_params = {}
|
|
153
|
+
# HTTP header 'Accept' (if needed)
|
|
154
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
|
155
|
+
|
|
156
|
+
# form parameters
|
|
157
|
+
form_params = {}
|
|
158
|
+
|
|
159
|
+
# http body (model)
|
|
160
|
+
post_body = nil
|
|
161
|
+
auth_names = ['oauth2']
|
|
162
|
+
data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
|
|
163
|
+
:header_params => header_params,
|
|
164
|
+
:query_params => query_params,
|
|
165
|
+
:form_params => form_params,
|
|
166
|
+
:body => post_body,
|
|
167
|
+
:auth_names => auth_names,
|
|
168
|
+
:return_type => 'RtpBankLinkResponseVO')
|
|
169
|
+
if @api_client.config.debugging
|
|
170
|
+
@api_client.config.logger.debug "API called: RTPApi#delete_rtp_bank_link_using_delete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
171
|
+
end
|
|
172
|
+
return data, status_code, headers
|
|
173
|
+
end
|
|
174
|
+
# Get a list of Rtp transfers
|
|
175
|
+
# @param nucleus_client_id nucleus_client_id
|
|
176
|
+
# @param [Hash] opts the optional parameters
|
|
177
|
+
# @return [Array<RtpTransferResponseVO>]
|
|
178
|
+
def get_list_of_rtp_transfers_using_get(nucleus_client_id, opts = {})
|
|
179
|
+
data, _status_code, _headers = get_list_of_rtp_transfers_using_get_with_http_info(nucleus_client_id, opts)
|
|
180
|
+
data
|
|
181
|
+
end
|
|
182
|
+
|
|
183
|
+
# Get a list of Rtp transfers
|
|
184
|
+
# @param nucleus_client_id nucleus_client_id
|
|
185
|
+
# @param [Hash] opts the optional parameters
|
|
186
|
+
# @return [Array<(Array<RtpTransferResponseVO>, Fixnum, Hash)>] Array<RtpTransferResponseVO> data, response status code and response headers
|
|
187
|
+
def get_list_of_rtp_transfers_using_get_with_http_info(nucleus_client_id, opts = {})
|
|
188
|
+
if @api_client.config.debugging
|
|
189
|
+
@api_client.config.logger.debug 'Calling API: RTPApi.get_list_of_rtp_transfers_using_get ...'
|
|
190
|
+
end
|
|
191
|
+
# verify the required parameter 'nucleus_client_id' is set
|
|
192
|
+
if @api_client.config.client_side_validation && nucleus_client_id.nil?
|
|
193
|
+
fail ArgumentError, "Missing the required parameter 'nucleus_client_id' when calling RTPApi.get_list_of_rtp_transfers_using_get"
|
|
194
|
+
end
|
|
195
|
+
# resource path
|
|
196
|
+
local_var_path = '/rtp/client/{nucleus_client_id}'.sub('{' + 'nucleus_client_id' + '}', nucleus_client_id.to_s)
|
|
197
|
+
|
|
198
|
+
# query parameters
|
|
199
|
+
query_params = {}
|
|
200
|
+
|
|
201
|
+
# header parameters
|
|
202
|
+
header_params = {}
|
|
203
|
+
# HTTP header 'Accept' (if needed)
|
|
204
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
|
205
|
+
|
|
206
|
+
# form parameters
|
|
207
|
+
form_params = {}
|
|
208
|
+
|
|
209
|
+
# http body (model)
|
|
210
|
+
post_body = nil
|
|
211
|
+
auth_names = ['oauth2']
|
|
212
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
|
213
|
+
:header_params => header_params,
|
|
214
|
+
:query_params => query_params,
|
|
215
|
+
:form_params => form_params,
|
|
216
|
+
:body => post_body,
|
|
217
|
+
:auth_names => auth_names,
|
|
218
|
+
:return_type => 'Array<RtpTransferResponseVO>')
|
|
219
|
+
if @api_client.config.debugging
|
|
220
|
+
@api_client.config.logger.debug "API called: RTPApi#get_list_of_rtp_transfers_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
221
|
+
end
|
|
222
|
+
return data, status_code, headers
|
|
223
|
+
end
|
|
224
|
+
# Get bank link
|
|
225
|
+
# @param nucleus_bank_link_id nucleus_bank_link_id
|
|
226
|
+
# @param [Hash] opts the optional parameters
|
|
227
|
+
# @return [RtpBankLinkResponseVO]
|
|
228
|
+
def get_rtp_bank_link_using_get(nucleus_bank_link_id, opts = {})
|
|
229
|
+
data, _status_code, _headers = get_rtp_bank_link_using_get_with_http_info(nucleus_bank_link_id, opts)
|
|
230
|
+
data
|
|
231
|
+
end
|
|
232
|
+
|
|
233
|
+
# Get bank link
|
|
234
|
+
# @param nucleus_bank_link_id nucleus_bank_link_id
|
|
235
|
+
# @param [Hash] opts the optional parameters
|
|
236
|
+
# @return [Array<(RtpBankLinkResponseVO, Fixnum, Hash)>] RtpBankLinkResponseVO data, response status code and response headers
|
|
237
|
+
def get_rtp_bank_link_using_get_with_http_info(nucleus_bank_link_id, opts = {})
|
|
238
|
+
if @api_client.config.debugging
|
|
239
|
+
@api_client.config.logger.debug 'Calling API: RTPApi.get_rtp_bank_link_using_get ...'
|
|
240
|
+
end
|
|
241
|
+
# verify the required parameter 'nucleus_bank_link_id' is set
|
|
242
|
+
if @api_client.config.client_side_validation && nucleus_bank_link_id.nil?
|
|
243
|
+
fail ArgumentError, "Missing the required parameter 'nucleus_bank_link_id' when calling RTPApi.get_rtp_bank_link_using_get"
|
|
244
|
+
end
|
|
245
|
+
# resource path
|
|
246
|
+
local_var_path = '/rtp/bank_link/{nucleus_bank_link_id}'.sub('{' + 'nucleus_bank_link_id' + '}', nucleus_bank_link_id.to_s)
|
|
247
|
+
|
|
248
|
+
# query parameters
|
|
249
|
+
query_params = {}
|
|
250
|
+
|
|
251
|
+
# header parameters
|
|
252
|
+
header_params = {}
|
|
253
|
+
# HTTP header 'Accept' (if needed)
|
|
254
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
|
255
|
+
|
|
256
|
+
# form parameters
|
|
257
|
+
form_params = {}
|
|
258
|
+
|
|
259
|
+
# http body (model)
|
|
260
|
+
post_body = nil
|
|
261
|
+
auth_names = ['oauth2']
|
|
262
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
|
263
|
+
:header_params => header_params,
|
|
264
|
+
:query_params => query_params,
|
|
265
|
+
:form_params => form_params,
|
|
266
|
+
:body => post_body,
|
|
267
|
+
:auth_names => auth_names,
|
|
268
|
+
:return_type => 'RtpBankLinkResponseVO')
|
|
269
|
+
if @api_client.config.debugging
|
|
270
|
+
@api_client.config.logger.debug "API called: RTPApi#get_rtp_bank_link_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
271
|
+
end
|
|
272
|
+
return data, status_code, headers
|
|
273
|
+
end
|
|
274
|
+
# Get client bank links
|
|
275
|
+
# @param nucleus_client_id nucleus_client_id
|
|
276
|
+
# @param [Hash] opts the optional parameters
|
|
277
|
+
# @return [Array<RtpBankLinkResponseVO>]
|
|
278
|
+
def get_rtp_client_bank_links_using_get(nucleus_client_id, opts = {})
|
|
279
|
+
data, _status_code, _headers = get_rtp_client_bank_links_using_get_with_http_info(nucleus_client_id, opts)
|
|
280
|
+
data
|
|
281
|
+
end
|
|
282
|
+
|
|
283
|
+
# Get client bank links
|
|
284
|
+
# @param nucleus_client_id nucleus_client_id
|
|
285
|
+
# @param [Hash] opts the optional parameters
|
|
286
|
+
# @return [Array<(Array<RtpBankLinkResponseVO>, Fixnum, Hash)>] Array<RtpBankLinkResponseVO> data, response status code and response headers
|
|
287
|
+
def get_rtp_client_bank_links_using_get_with_http_info(nucleus_client_id, opts = {})
|
|
288
|
+
if @api_client.config.debugging
|
|
289
|
+
@api_client.config.logger.debug 'Calling API: RTPApi.get_rtp_client_bank_links_using_get ...'
|
|
290
|
+
end
|
|
291
|
+
# verify the required parameter 'nucleus_client_id' is set
|
|
292
|
+
if @api_client.config.client_side_validation && nucleus_client_id.nil?
|
|
293
|
+
fail ArgumentError, "Missing the required parameter 'nucleus_client_id' when calling RTPApi.get_rtp_client_bank_links_using_get"
|
|
294
|
+
end
|
|
295
|
+
# resource path
|
|
296
|
+
local_var_path = '/rtp/bank_link/client/{nucleus_client_id}'.sub('{' + 'nucleus_client_id' + '}', nucleus_client_id.to_s)
|
|
297
|
+
|
|
298
|
+
# query parameters
|
|
299
|
+
query_params = {}
|
|
300
|
+
|
|
301
|
+
# header parameters
|
|
302
|
+
header_params = {}
|
|
303
|
+
# HTTP header 'Accept' (if needed)
|
|
304
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
|
305
|
+
|
|
306
|
+
# form parameters
|
|
307
|
+
form_params = {}
|
|
308
|
+
|
|
309
|
+
# http body (model)
|
|
310
|
+
post_body = nil
|
|
311
|
+
auth_names = ['oauth2']
|
|
312
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
|
313
|
+
:header_params => header_params,
|
|
314
|
+
:query_params => query_params,
|
|
315
|
+
:form_params => form_params,
|
|
316
|
+
:body => post_body,
|
|
317
|
+
:auth_names => auth_names,
|
|
318
|
+
:return_type => 'Array<RtpBankLinkResponseVO>')
|
|
319
|
+
if @api_client.config.debugging
|
|
320
|
+
@api_client.config.logger.debug "API called: RTPApi#get_rtp_client_bank_links_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
321
|
+
end
|
|
322
|
+
return data, status_code, headers
|
|
323
|
+
end
|
|
324
|
+
# Get the RTP transfer
|
|
325
|
+
# @param nucleus_funding_id nucleus_funding_id
|
|
326
|
+
# @param [Hash] opts the optional parameters
|
|
327
|
+
# @return [RtpTransferResponseVO]
|
|
328
|
+
def get_rtp_transfer_using_get(nucleus_funding_id, opts = {})
|
|
329
|
+
data, _status_code, _headers = get_rtp_transfer_using_get_with_http_info(nucleus_funding_id, opts)
|
|
330
|
+
data
|
|
331
|
+
end
|
|
332
|
+
|
|
333
|
+
# Get the RTP transfer
|
|
334
|
+
# @param nucleus_funding_id nucleus_funding_id
|
|
335
|
+
# @param [Hash] opts the optional parameters
|
|
336
|
+
# @return [Array<(RtpTransferResponseVO, Fixnum, Hash)>] RtpTransferResponseVO data, response status code and response headers
|
|
337
|
+
def get_rtp_transfer_using_get_with_http_info(nucleus_funding_id, opts = {})
|
|
338
|
+
if @api_client.config.debugging
|
|
339
|
+
@api_client.config.logger.debug 'Calling API: RTPApi.get_rtp_transfer_using_get ...'
|
|
340
|
+
end
|
|
341
|
+
# verify the required parameter 'nucleus_funding_id' is set
|
|
342
|
+
if @api_client.config.client_side_validation && nucleus_funding_id.nil?
|
|
343
|
+
fail ArgumentError, "Missing the required parameter 'nucleus_funding_id' when calling RTPApi.get_rtp_transfer_using_get"
|
|
344
|
+
end
|
|
345
|
+
# resource path
|
|
346
|
+
local_var_path = '/rtp/{nucleus_funding_id}'.sub('{' + 'nucleus_funding_id' + '}', nucleus_funding_id.to_s)
|
|
347
|
+
|
|
348
|
+
# query parameters
|
|
349
|
+
query_params = {}
|
|
350
|
+
|
|
351
|
+
# header parameters
|
|
352
|
+
header_params = {}
|
|
353
|
+
# HTTP header 'Accept' (if needed)
|
|
354
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
|
355
|
+
|
|
356
|
+
# form parameters
|
|
357
|
+
form_params = {}
|
|
358
|
+
|
|
359
|
+
# http body (model)
|
|
360
|
+
post_body = nil
|
|
361
|
+
auth_names = ['oauth2']
|
|
362
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
|
363
|
+
:header_params => header_params,
|
|
364
|
+
:query_params => query_params,
|
|
365
|
+
:form_params => form_params,
|
|
366
|
+
:body => post_body,
|
|
367
|
+
:auth_names => auth_names,
|
|
368
|
+
:return_type => 'RtpTransferResponseVO')
|
|
369
|
+
if @api_client.config.debugging
|
|
370
|
+
@api_client.config.logger.debug "API called: RTPApi#get_rtp_transfer_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
371
|
+
end
|
|
372
|
+
return data, status_code, headers
|
|
373
|
+
end
|
|
374
|
+
# Submit a RTP transfer
|
|
375
|
+
# @param transfer_request transferRequest
|
|
376
|
+
# @param [Hash] opts the optional parameters
|
|
377
|
+
# @return [RtpTransferResponseVO]
|
|
378
|
+
def submit_rtp_transfer_using_post(transfer_request, opts = {})
|
|
379
|
+
data, _status_code, _headers = submit_rtp_transfer_using_post_with_http_info(transfer_request, opts)
|
|
380
|
+
data
|
|
381
|
+
end
|
|
382
|
+
|
|
383
|
+
# Submit a RTP transfer
|
|
384
|
+
# @param transfer_request transferRequest
|
|
385
|
+
# @param [Hash] opts the optional parameters
|
|
386
|
+
# @return [Array<(RtpTransferResponseVO, Fixnum, Hash)>] RtpTransferResponseVO data, response status code and response headers
|
|
387
|
+
def submit_rtp_transfer_using_post_with_http_info(transfer_request, opts = {})
|
|
388
|
+
if @api_client.config.debugging
|
|
389
|
+
@api_client.config.logger.debug 'Calling API: RTPApi.submit_rtp_transfer_using_post ...'
|
|
390
|
+
end
|
|
391
|
+
# verify the required parameter 'transfer_request' is set
|
|
392
|
+
if @api_client.config.client_side_validation && transfer_request.nil?
|
|
393
|
+
fail ArgumentError, "Missing the required parameter 'transfer_request' when calling RTPApi.submit_rtp_transfer_using_post"
|
|
394
|
+
end
|
|
395
|
+
# resource path
|
|
396
|
+
local_var_path = '/rtp'
|
|
397
|
+
|
|
398
|
+
# query parameters
|
|
399
|
+
query_params = {}
|
|
400
|
+
|
|
401
|
+
# header parameters
|
|
402
|
+
header_params = {}
|
|
403
|
+
# HTTP header 'Accept' (if needed)
|
|
404
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
|
405
|
+
# HTTP header 'Content-Type'
|
|
406
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
|
407
|
+
|
|
408
|
+
# form parameters
|
|
409
|
+
form_params = {}
|
|
410
|
+
|
|
411
|
+
# http body (model)
|
|
412
|
+
post_body = @api_client.object_to_http_body(transfer_request)
|
|
413
|
+
auth_names = ['oauth2']
|
|
414
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
|
415
|
+
:header_params => header_params,
|
|
416
|
+
:query_params => query_params,
|
|
417
|
+
:form_params => form_params,
|
|
418
|
+
:body => post_body,
|
|
419
|
+
:auth_names => auth_names,
|
|
420
|
+
:return_type => 'RtpTransferResponseVO')
|
|
421
|
+
if @api_client.config.debugging
|
|
422
|
+
@api_client.config.logger.debug "API called: RTPApi#submit_rtp_transfer_using_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
423
|
+
end
|
|
424
|
+
return data, status_code, headers
|
|
425
|
+
end
|
|
426
|
+
# Update bank link
|
|
427
|
+
# @param nucleus_bank_link_id nucleus_bank_link_id
|
|
428
|
+
# @param [Hash] opts the optional parameters
|
|
429
|
+
# @return [RtpBankLinkResponseVO]
|
|
430
|
+
def update_rtp_bank_link_using_put(nucleus_bank_link_id, opts = {})
|
|
431
|
+
data, _status_code, _headers = update_rtp_bank_link_using_put_with_http_info(nucleus_bank_link_id, opts)
|
|
432
|
+
data
|
|
433
|
+
end
|
|
434
|
+
|
|
435
|
+
# Update bank link
|
|
436
|
+
# @param nucleus_bank_link_id nucleus_bank_link_id
|
|
437
|
+
# @param [Hash] opts the optional parameters
|
|
438
|
+
# @return [Array<(RtpBankLinkResponseVO, Fixnum, Hash)>] RtpBankLinkResponseVO data, response status code and response headers
|
|
439
|
+
def update_rtp_bank_link_using_put_with_http_info(nucleus_bank_link_id, opts = {})
|
|
440
|
+
if @api_client.config.debugging
|
|
441
|
+
@api_client.config.logger.debug 'Calling API: RTPApi.update_rtp_bank_link_using_put ...'
|
|
442
|
+
end
|
|
443
|
+
# verify the required parameter 'nucleus_bank_link_id' is set
|
|
444
|
+
if @api_client.config.client_side_validation && nucleus_bank_link_id.nil?
|
|
445
|
+
fail ArgumentError, "Missing the required parameter 'nucleus_bank_link_id' when calling RTPApi.update_rtp_bank_link_using_put"
|
|
446
|
+
end
|
|
447
|
+
# resource path
|
|
448
|
+
local_var_path = '/rtp/bank_link/{nucleus_bank_link_id}'.sub('{' + 'nucleus_bank_link_id' + '}', nucleus_bank_link_id.to_s)
|
|
449
|
+
|
|
450
|
+
# query parameters
|
|
451
|
+
query_params = {}
|
|
452
|
+
|
|
453
|
+
# header parameters
|
|
454
|
+
header_params = {}
|
|
455
|
+
# HTTP header 'Accept' (if needed)
|
|
456
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
|
457
|
+
# HTTP header 'Content-Type'
|
|
458
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
|
459
|
+
|
|
460
|
+
# form parameters
|
|
461
|
+
form_params = {}
|
|
462
|
+
|
|
463
|
+
# http body (model)
|
|
464
|
+
post_body = nil
|
|
465
|
+
auth_names = ['oauth2']
|
|
466
|
+
data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
|
|
467
|
+
:header_params => header_params,
|
|
468
|
+
:query_params => query_params,
|
|
469
|
+
:form_params => form_params,
|
|
470
|
+
:body => post_body,
|
|
471
|
+
:auth_names => auth_names,
|
|
472
|
+
:return_type => 'RtpBankLinkResponseVO')
|
|
473
|
+
if @api_client.config.debugging
|
|
474
|
+
@api_client.config.logger.debug "API called: RTPApi#update_rtp_bank_link_using_put\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
475
|
+
end
|
|
476
|
+
return data, status_code, headers
|
|
477
|
+
end
|
|
478
|
+
end
|
|
479
|
+
end
|