hydrogen-nucleus-api 1.9.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +7 -0
- data/README.md +80 -0
- data/Rakefile +8 -0
- data/git_push.sh +55 -0
- data/lib/nucleus_api.rb +306 -0
- data/lib/nucleus_api/api/account_api.rb +1755 -0
- data/lib/nucleus_api/api/admin_client_api.rb +346 -0
- data/lib/nucleus_api/api/aggregation_account_api.rb +1642 -0
- data/lib/nucleus_api/api/allocation_api.rb +824 -0
- data/lib/nucleus_api/api/benchmark_api.rb +362 -0
- data/lib/nucleus_api/api/budget_api.rb +307 -0
- data/lib/nucleus_api/api/bulk_api.rb +253 -0
- data/lib/nucleus_api/api/business_api.rb +526 -0
- data/lib/nucleus_api/api/card_api.rb +864 -0
- data/lib/nucleus_api/api/client_api.rb +1246 -0
- data/lib/nucleus_api/api/contact_api.rb +585 -0
- data/lib/nucleus_api/api/decision_tree_api.rb +911 -0
- data/lib/nucleus_api/api/document_api.rb +301 -0
- data/lib/nucleus_api/api/financial_statement_api.rb +307 -0
- data/lib/nucleus_api/api/funding_api.rb +1213 -0
- data/lib/nucleus_api/api/goal_api.rb +837 -0
- data/lib/nucleus_api/api/household_api.rb +526 -0
- data/lib/nucleus_api/api/invoice_api.rb +591 -0
- data/lib/nucleus_api/api/model_api.rb +1479 -0
- data/lib/nucleus_api/api/order_api.rb +1688 -0
- data/lib/nucleus_api/api/overflow_api.rb +468 -0
- data/lib/nucleus_api/api/portfolio_api.rb +1840 -0
- data/lib/nucleus_api/api/questionnaire_api.rb +857 -0
- data/lib/nucleus_api/api/resource_api.rb +823 -0
- data/lib/nucleus_api/api/risk_profile_api.rb +301 -0
- data/lib/nucleus_api/api/roundup_api.rb +468 -0
- data/lib/nucleus_api/api/score_api.rb +301 -0
- data/lib/nucleus_api/api/securities_api.rb +863 -0
- data/lib/nucleus_api/api/spending_control_api.rb +301 -0
- data/lib/nucleus_api/api/utils_api.rb +2692 -0
- data/lib/nucleus_api/api/webhook_api.rb +301 -0
- data/lib/nucleus_api/api_client.rb +391 -0
- data/lib/nucleus_api/api_error.rb +38 -0
- data/lib/nucleus_api/auth_configuration.rb +181 -0
- data/lib/nucleus_api/configuration.rb +209 -0
- data/lib/nucleus_api/environment.rb +26 -0
- data/lib/nucleus_api/models/account.rb +335 -0
- data/lib/nucleus_api/models/account_allocation_mapping.rb +295 -0
- data/lib/nucleus_api/models/account_map.rb +203 -0
- data/lib/nucleus_api/models/account_permission_vo.rb +196 -0
- data/lib/nucleus_api/models/account_portfolio_rebalance_request.rb +314 -0
- data/lib/nucleus_api/models/account_status.rb +271 -0
- data/lib/nucleus_api/models/account_type.rb +336 -0
- data/lib/nucleus_api/models/acl_client_permission_vo.rb +237 -0
- data/lib/nucleus_api/models/admin_client.rb +290 -0
- data/lib/nucleus_api/models/aggregation_account.rb +541 -0
- data/lib/nucleus_api/models/aggregation_account_balance.rb +285 -0
- data/lib/nucleus_api/models/aggregation_account_holding.rb +357 -0
- data/lib/nucleus_api/models/aggregation_account_transaction.rb +336 -0
- data/lib/nucleus_api/models/aggregation_accounts_map.rb +203 -0
- data/lib/nucleus_api/models/allocation.rb +326 -0
- data/lib/nucleus_api/models/allocation_aggregated_vo.rb +229 -0
- data/lib/nucleus_api/models/allocation_composition.rb +305 -0
- data/lib/nucleus_api/models/allocation_composition_aggregated_vo.rb +283 -0
- data/lib/nucleus_api/models/allocation_composition_model_holdings_vo.rb +312 -0
- data/lib/nucleus_api/models/allocation_node_map.rb +188 -0
- data/lib/nucleus_api/models/answer.rb +314 -0
- data/lib/nucleus_api/models/answer_map.rb +182 -0
- data/lib/nucleus_api/models/application.rb +257 -0
- data/lib/nucleus_api/models/audit_log.rb +358 -0
- data/lib/nucleus_api/models/available_date_double_vo.rb +244 -0
- data/lib/nucleus_api/models/balances.rb +224 -0
- data/lib/nucleus_api/models/bank_credit.rb +283 -0
- data/lib/nucleus_api/models/bank_link.rb +431 -0
- data/lib/nucleus_api/models/bank_link_map.rb +203 -0
- data/lib/nucleus_api/models/benchmark.rb +278 -0
- data/lib/nucleus_api/models/benchmark_composition.rb +203 -0
- data/lib/nucleus_api/models/brokers.rb +204 -0
- data/lib/nucleus_api/models/budget.rb +383 -0
- data/lib/nucleus_api/models/budget_aggregation_account.rb +188 -0
- data/lib/nucleus_api/models/budget_object.rb +214 -0
- data/lib/nucleus_api/models/bulk_transaction.rb +227 -0
- data/lib/nucleus_api/models/bulk_transaction_vo.rb +218 -0
- data/lib/nucleus_api/models/business.rb +430 -0
- data/lib/nucleus_api/models/business_address.rb +279 -0
- data/lib/nucleus_api/models/business_details_vo.rb +236 -0
- data/lib/nucleus_api/models/card.rb +497 -0
- data/lib/nucleus_api/models/card_address.rb +269 -0
- data/lib/nucleus_api/models/card_balance_vo.rb +214 -0
- data/lib/nucleus_api/models/card_details_vo.rb +284 -0
- data/lib/nucleus_api/models/card_program.rb +351 -0
- data/lib/nucleus_api/models/cash.rb +214 -0
- data/lib/nucleus_api/models/categories_map.rb +203 -0
- data/lib/nucleus_api/models/check.rb +211 -0
- data/lib/nucleus_api/models/check_images.rb +199 -0
- data/lib/nucleus_api/models/client.rb +524 -0
- data/lib/nucleus_api/models/client_account_mapping.rb +213 -0
- data/lib/nucleus_api/models/client_address.rb +279 -0
- data/lib/nucleus_api/models/client_business_card_vo.rb +218 -0
- data/lib/nucleus_api/models/client_business_total_card_balance_vo.rb +204 -0
- data/lib/nucleus_api/models/client_card_vo.rb +244 -0
- data/lib/nucleus_api/models/client_credentials.rb +200 -0
- data/lib/nucleus_api/models/client_relationship.rb +210 -0
- data/lib/nucleus_api/models/client_response.rb +281 -0
- data/lib/nucleus_api/models/client_status.rb +271 -0
- data/lib/nucleus_api/models/client_view_goal_data.rb +303 -0
- data/lib/nucleus_api/models/contact.rb +356 -0
- data/lib/nucleus_api/models/contact_address.rb +269 -0
- data/lib/nucleus_api/models/country.rb +251 -0
- data/lib/nucleus_api/models/currency.rb +213 -0
- data/lib/nucleus_api/models/customer_revenue.rb +297 -0
- data/lib/nucleus_api/models/date_double_vo.rb +204 -0
- data/lib/nucleus_api/models/decision_tree.rb +276 -0
- data/lib/nucleus_api/models/decision_tree_co.rb +203 -0
- data/lib/nucleus_api/models/decision_tree_result_vo.rb +193 -0
- data/lib/nucleus_api/models/document.rb +407 -0
- data/lib/nucleus_api/models/employment.rb +214 -0
- data/lib/nucleus_api/models/external_account_transfer.rb +413 -0
- data/lib/nucleus_api/models/feature.rb +287 -0
- data/lib/nucleus_api/models/feature_track.rb +252 -0
- data/lib/nucleus_api/models/financial_statement.rb +363 -0
- data/lib/nucleus_api/models/funding.rb +509 -0
- data/lib/nucleus_api/models/funding_request_map.rb +188 -0
- data/lib/nucleus_api/models/funding_transaction.rb +391 -0
- data/lib/nucleus_api/models/fx_rate.rb +234 -0
- data/lib/nucleus_api/models/fx_rate_view.rb +234 -0
- data/lib/nucleus_api/models/goal.rb +341 -0
- data/lib/nucleus_api/models/goal_account_mapping.rb +219 -0
- data/lib/nucleus_api/models/goal_track.rb +373 -0
- data/lib/nucleus_api/models/goal_track_accounts.rb +188 -0
- data/lib/nucleus_api/models/household.rb +286 -0
- data/lib/nucleus_api/models/institution.rb +256 -0
- data/lib/nucleus_api/models/investment.rb +279 -0
- data/lib/nucleus_api/models/invoice.rb +473 -0
- data/lib/nucleus_api/models/invoice_payment.rb +282 -0
- data/lib/nucleus_api/models/json_node.rb +173 -0
- data/lib/nucleus_api/models/line_items.rb +279 -0
- data/lib/nucleus_api/models/location.rb +254 -0
- data/lib/nucleus_api/models/member.rb +218 -0
- data/lib/nucleus_api/models/merchant_category_code.rb +229 -0
- data/lib/nucleus_api/models/merchants_map.rb +203 -0
- data/lib/nucleus_api/models/model.rb +397 -0
- data/lib/nucleus_api/models/model_asset_size.rb +275 -0
- data/lib/nucleus_api/models/model_comment.rb +265 -0
- data/lib/nucleus_api/models/model_holding.rb +371 -0
- data/lib/nucleus_api/models/model_holding_vo.rb +209 -0
- data/lib/nucleus_api/models/model_transaction.rb +299 -0
- data/lib/nucleus_api/models/mx_merchant_res.rb +236 -0
- data/lib/nucleus_api/models/node.rb +261 -0
- data/lib/nucleus_api/models/node_relationship.rb +301 -0
- data/lib/nucleus_api/models/notification.rb +314 -0
- data/lib/nucleus_api/models/notification_client.rb +310 -0
- data/lib/nucleus_api/models/notification_setting.rb +301 -0
- data/lib/nucleus_api/models/order.rb +391 -0
- data/lib/nucleus_api/models/order_bulk.rb +310 -0
- data/lib/nucleus_api/models/order_reconcile_request.rb +221 -0
- data/lib/nucleus_api/models/order_reconcile_return_object.rb +228 -0
- data/lib/nucleus_api/models/order_status.rb +251 -0
- data/lib/nucleus_api/models/order_track.rb +317 -0
- data/lib/nucleus_api/models/order_vo_clone.rb +305 -0
- data/lib/nucleus_api/models/overflow.rb +282 -0
- data/lib/nucleus_api/models/overflow_bank_link_map.rb +213 -0
- data/lib/nucleus_api/models/overflow_settings.rb +288 -0
- data/lib/nucleus_api/models/overflow_vo.rb +204 -0
- data/lib/nucleus_api/models/ownership.rb +234 -0
- data/lib/nucleus_api/models/page_account.rb +259 -0
- data/lib/nucleus_api/models/page_account_allocation_mapping.rb +259 -0
- data/lib/nucleus_api/models/page_account_permission_vo.rb +259 -0
- data/lib/nucleus_api/models/page_account_status.rb +259 -0
- data/lib/nucleus_api/models/page_account_type.rb +259 -0
- data/lib/nucleus_api/models/page_admin_client.rb +259 -0
- data/lib/nucleus_api/models/page_aggregation_account.rb +259 -0
- data/lib/nucleus_api/models/page_aggregation_account_balance.rb +259 -0
- data/lib/nucleus_api/models/page_aggregation_account_holding.rb +259 -0
- data/lib/nucleus_api/models/page_aggregation_account_transaction.rb +259 -0
- data/lib/nucleus_api/models/page_allocation.rb +259 -0
- data/lib/nucleus_api/models/page_allocation_composition.rb +259 -0
- data/lib/nucleus_api/models/page_answer.rb +259 -0
- data/lib/nucleus_api/models/page_application.rb +259 -0
- data/lib/nucleus_api/models/page_audit_log.rb +259 -0
- data/lib/nucleus_api/models/page_bank_link.rb +259 -0
- data/lib/nucleus_api/models/page_benchmark.rb +259 -0
- data/lib/nucleus_api/models/page_budget.rb +259 -0
- data/lib/nucleus_api/models/page_business.rb +259 -0
- data/lib/nucleus_api/models/page_card.rb +259 -0
- data/lib/nucleus_api/models/page_card_program.rb +259 -0
- data/lib/nucleus_api/models/page_client.rb +259 -0
- data/lib/nucleus_api/models/page_client_business_card_vo.rb +259 -0
- data/lib/nucleus_api/models/page_client_response.rb +259 -0
- data/lib/nucleus_api/models/page_client_status.rb +259 -0
- data/lib/nucleus_api/models/page_contact.rb +259 -0
- data/lib/nucleus_api/models/page_customer_revenue.rb +259 -0
- data/lib/nucleus_api/models/page_decision_tree.rb +259 -0
- data/lib/nucleus_api/models/page_document.rb +259 -0
- data/lib/nucleus_api/models/page_external_account_transfer.rb +259 -0
- data/lib/nucleus_api/models/page_feature.rb +259 -0
- data/lib/nucleus_api/models/page_feature_track.rb +259 -0
- data/lib/nucleus_api/models/page_financial_statement.rb +259 -0
- data/lib/nucleus_api/models/page_funding.rb +259 -0
- data/lib/nucleus_api/models/page_funding_transaction.rb +259 -0
- data/lib/nucleus_api/models/page_goal.rb +259 -0
- data/lib/nucleus_api/models/page_goal_track.rb +259 -0
- data/lib/nucleus_api/models/page_household.rb +259 -0
- data/lib/nucleus_api/models/page_institution.rb +259 -0
- data/lib/nucleus_api/models/page_invoice.rb +259 -0
- data/lib/nucleus_api/models/page_invoice_payment.rb +259 -0
- data/lib/nucleus_api/models/page_model.rb +259 -0
- data/lib/nucleus_api/models/page_model_asset_size.rb +259 -0
- data/lib/nucleus_api/models/page_model_comment.rb +259 -0
- data/lib/nucleus_api/models/page_model_holding.rb +259 -0
- data/lib/nucleus_api/models/page_model_transaction.rb +259 -0
- data/lib/nucleus_api/models/page_mx_merchant_res.rb +274 -0
- data/lib/nucleus_api/models/page_node.rb +259 -0
- data/lib/nucleus_api/models/page_node_relationship.rb +259 -0
- data/lib/nucleus_api/models/page_notification.rb +259 -0
- data/lib/nucleus_api/models/page_notification_client.rb +259 -0
- data/lib/nucleus_api/models/page_notification_setting.rb +259 -0
- data/lib/nucleus_api/models/page_order.rb +259 -0
- data/lib/nucleus_api/models/page_order_bulk.rb +259 -0
- data/lib/nucleus_api/models/page_order_status.rb +259 -0
- data/lib/nucleus_api/models/page_order_track.rb +259 -0
- data/lib/nucleus_api/models/page_overflow.rb +259 -0
- data/lib/nucleus_api/models/page_overflow_settings.rb +259 -0
- data/lib/nucleus_api/models/page_portfolio.rb +259 -0
- data/lib/nucleus_api/models/page_portfolio_asset_size_log.rb +259 -0
- data/lib/nucleus_api/models/page_portfolio_comment.rb +259 -0
- data/lib/nucleus_api/models/page_portfolio_goal.rb +259 -0
- data/lib/nucleus_api/models/page_portfolio_holding_agg.rb +259 -0
- data/lib/nucleus_api/models/page_portfolio_holding_log.rb +259 -0
- data/lib/nucleus_api/models/page_portfolio_transaction.rb +259 -0
- data/lib/nucleus_api/models/page_question.rb +259 -0
- data/lib/nucleus_api/models/page_questionnaire.rb +259 -0
- data/lib/nucleus_api/models/page_reason_code.rb +259 -0
- data/lib/nucleus_api/models/page_risk_profile.rb +259 -0
- data/lib/nucleus_api/models/page_roundup.rb +259 -0
- data/lib/nucleus_api/models/page_roundup_settings.rb +259 -0
- data/lib/nucleus_api/models/page_score.rb +259 -0
- data/lib/nucleus_api/models/page_security.rb +259 -0
- data/lib/nucleus_api/models/page_security_exclusion.rb +259 -0
- data/lib/nucleus_api/models/page_security_price.rb +259 -0
- data/lib/nucleus_api/models/page_spending_control.rb +259 -0
- data/lib/nucleus_api/models/page_stage.rb +259 -0
- data/lib/nucleus_api/models/page_transaction_code.rb +259 -0
- data/lib/nucleus_api/models/page_webhook.rb +259 -0
- data/lib/nucleus_api/models/pageable.rb +227 -0
- data/lib/nucleus_api/models/permission_vo.rb +227 -0
- data/lib/nucleus_api/models/portfolio.rb +337 -0
- data/lib/nucleus_api/models/portfolio_asset_size_log.rb +330 -0
- data/lib/nucleus_api/models/portfolio_comment.rb +280 -0
- data/lib/nucleus_api/models/portfolio_goal.rb +256 -0
- data/lib/nucleus_api/models/portfolio_goal_map.rb +203 -0
- data/lib/nucleus_api/models/portfolio_holding_agg.rb +244 -0
- data/lib/nucleus_api/models/portfolio_holding_log.rb +340 -0
- data/lib/nucleus_api/models/portfolio_transaction.rb +536 -0
- data/lib/nucleus_api/models/question.rb +362 -0
- data/lib/nucleus_api/models/questionnaire.rb +288 -0
- data/lib/nucleus_api/models/reason_code.rb +275 -0
- data/lib/nucleus_api/models/risk_profile.rb +287 -0
- data/lib/nucleus_api/models/roundup.rb +267 -0
- data/lib/nucleus_api/models/roundup_co.rb +233 -0
- data/lib/nucleus_api/models/roundup_settings.rb +332 -0
- data/lib/nucleus_api/models/score.rb +375 -0
- data/lib/nucleus_api/models/securities_composition.rb +233 -0
- data/lib/nucleus_api/models/securities_country.rb +203 -0
- data/lib/nucleus_api/models/security.rb +435 -0
- data/lib/nucleus_api/models/security_composition_vo.rb +301 -0
- data/lib/nucleus_api/models/security_country_vo.rb +191 -0
- data/lib/nucleus_api/models/security_exclusion.rb +301 -0
- data/lib/nucleus_api/models/security_price.rb +314 -0
- data/lib/nucleus_api/models/sort.rb +234 -0
- data/lib/nucleus_api/models/spending_control.rb +343 -0
- data/lib/nucleus_api/models/stage.rb +346 -0
- data/lib/nucleus_api/models/stat.rb +204 -0
- data/lib/nucleus_api/models/state.rb +203 -0
- data/lib/nucleus_api/models/statistic_resource_vo.rb +209 -0
- data/lib/nucleus_api/models/token_date_request.rb +234 -0
- data/lib/nucleus_api/models/transaction_code.rb +313 -0
- data/lib/nucleus_api/models/v_account_vo.rb +227 -0
- data/lib/nucleus_api/models/v_client_goal_view_data.rb +229 -0
- data/lib/nucleus_api/models/v_portfolio_vo.rb +209 -0
- data/lib/nucleus_api/models/webhook.rb +278 -0
- data/lib/nucleus_api/version.rb +15 -0
- data/nucleus_api.gemspec +46 -0
- data/spec/api/account_api_spec.rb +445 -0
- data/spec/api/admin_client_api_spec.rb +107 -0
- data/spec/api/aggregation_account_api_spec.rb +412 -0
- data/spec/api/allocation_api_spec.rb +225 -0
- data/spec/api/benchmark_api_spec.rb +115 -0
- data/spec/api/budget_api_spec.rb +102 -0
- data/spec/api/bulk_api_spec.rb +86 -0
- data/spec/api/business_api_spec.rb +159 -0
- data/spec/api/card_api_spec.rb +239 -0
- data/spec/api/client_api_spec.rb +327 -0
- data/spec/api/contact_api_spec.rb +167 -0
- data/spec/api/decision_tree_api_spec.rb +242 -0
- data/spec/api/document_api_spec.rb +100 -0
- data/spec/api/financial_statement_api_spec.rb +102 -0
- data/spec/api/funding_api_spec.rb +315 -0
- data/spec/api/goal_api_spec.rb +231 -0
- data/spec/api/household_api_spec.rb +159 -0
- data/spec/api/invoice_api_spec.rb +169 -0
- data/spec/api/model_api_spec.rb +375 -0
- data/spec/api/order_api_spec.rb +412 -0
- data/spec/api/overflow_api_spec.rb +140 -0
- data/spec/api/portfolio_api_spec.rb +464 -0
- data/spec/api/questionnaire_api_spec.rb +230 -0
- data/spec/api/resource_api_spec.rb +229 -0
- data/spec/api/risk_profile_api_spec.rb +100 -0
- data/spec/api/roundup_api_spec.rb +140 -0
- data/spec/api/score_api_spec.rb +100 -0
- data/spec/api/securities_api_spec.rb +232 -0
- data/spec/api/spending_control_api_spec.rb +100 -0
- data/spec/api/utils_api_spec.rb +660 -0
- data/spec/api/webhook_api_spec.rb +100 -0
- data/spec/api_client_spec.rb +243 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/account_allocation_mapping_spec.rb +95 -0
- data/spec/models/account_map_spec.rb +47 -0
- data/spec/models/account_permission_vo_spec.rb +47 -0
- data/spec/models/account_portfolio_rebalance_request_spec.rb +119 -0
- data/spec/models/account_spec.rb +125 -0
- data/spec/models/account_status_spec.rb +89 -0
- data/spec/models/account_type_spec.rb +131 -0
- data/spec/models/acl_client_permission_vo_spec.rb +57 -0
- data/spec/models/admin_client_spec.rb +113 -0
- data/spec/models/aggregation_account_balance_spec.rb +101 -0
- data/spec/models/aggregation_account_holding_spec.rb +149 -0
- data/spec/models/aggregation_account_spec.rb +251 -0
- data/spec/models/aggregation_account_transaction_spec.rb +131 -0
- data/spec/models/aggregation_accounts_map_spec.rb +47 -0
- data/spec/models/allocation_aggregated_vo_spec.rb +71 -0
- data/spec/models/allocation_composition_aggregated_vo_spec.rb +107 -0
- data/spec/models/allocation_composition_model_holdings_vo_spec.rb +125 -0
- data/spec/models/allocation_composition_spec.rb +101 -0
- data/spec/models/allocation_node_map_spec.rb +41 -0
- data/spec/models/allocation_spec.rb +125 -0
- data/spec/models/answer_map_spec.rb +41 -0
- data/spec/models/answer_spec.rb +119 -0
- data/spec/models/application_spec.rb +83 -0
- data/spec/models/audit_log_spec.rb +131 -0
- data/spec/models/available_date_double_vo_spec.rb +77 -0
- data/spec/models/balances_spec.rb +65 -0
- data/spec/models/bank_credit_spec.rb +95 -0
- data/spec/models/bank_link_map_spec.rb +47 -0
- data/spec/models/bank_link_spec.rb +179 -0
- data/spec/models/benchmark_composition_spec.rb +47 -0
- data/spec/models/benchmark_spec.rb +95 -0
- data/spec/models/brokers_spec.rb +47 -0
- data/spec/models/budget_aggregation_account_spec.rb +41 -0
- data/spec/models/budget_object_spec.rb +53 -0
- data/spec/models/budget_spec.rb +149 -0
- data/spec/models/bulk_transaction_spec.rb +71 -0
- data/spec/models/bulk_transaction_vo_spec.rb +65 -0
- data/spec/models/business_address_spec.rb +83 -0
- data/spec/models/business_details_vo_spec.rb +71 -0
- data/spec/models/business_spec.rb +185 -0
- data/spec/models/card_address_spec.rb +77 -0
- data/spec/models/card_balance_vo_spec.rb +59 -0
- data/spec/models/card_details_vo_spec.rb +101 -0
- data/spec/models/card_program_spec.rb +131 -0
- data/spec/models/card_spec.rb +215 -0
- data/spec/models/cash_spec.rb +53 -0
- data/spec/models/categories_map_spec.rb +47 -0
- data/spec/models/check_images_spec.rb +47 -0
- data/spec/models/check_spec.rb +53 -0
- data/spec/models/client_account_mapping_spec.rb +53 -0
- data/spec/models/client_address_spec.rb +83 -0
- data/spec/models/client_business_card_vo_spec.rb +59 -0
- data/spec/models/client_business_total_card_balance_vo_spec.rb +53 -0
- data/spec/models/client_card_vo_spec.rb +77 -0
- data/spec/models/client_credentials_spec.rb +53 -0
- data/spec/models/client_relationship_spec.rb +53 -0
- data/spec/models/client_response_spec.rb +95 -0
- data/spec/models/client_spec.rb +239 -0
- data/spec/models/client_status_spec.rb +89 -0
- data/spec/models/client_view_goal_data_spec.rb +119 -0
- data/spec/models/contact_address_spec.rb +77 -0
- data/spec/models/contact_spec.rb +143 -0
- data/spec/models/country_spec.rb +71 -0
- data/spec/models/currency_spec.rb +59 -0
- data/spec/models/customer_revenue_spec.rb +95 -0
- data/spec/models/date_double_vo_spec.rb +53 -0
- data/spec/models/decision_tree_co_spec.rb +47 -0
- data/spec/models/decision_tree_result_vo_spec.rb +47 -0
- data/spec/models/decision_tree_spec.rb +95 -0
- data/spec/models/document_spec.rb +173 -0
- data/spec/models/employment_spec.rb +59 -0
- data/spec/models/external_account_transfer_spec.rb +161 -0
- data/spec/models/feature_spec.rb +101 -0
- data/spec/models/feature_track_spec.rb +77 -0
- data/spec/models/financial_statement_spec.rb +137 -0
- data/spec/models/funding_request_map_spec.rb +41 -0
- data/spec/models/funding_spec.rb +221 -0
- data/spec/models/funding_transaction_spec.rb +155 -0
- data/spec/models/fx_rate_spec.rb +59 -0
- data/spec/models/fx_rate_view_spec.rb +59 -0
- data/spec/models/goal_account_mapping_spec.rb +59 -0
- data/spec/models/goal_spec.rb +137 -0
- data/spec/models/goal_track_accounts_spec.rb +41 -0
- data/spec/models/goal_track_spec.rb +149 -0
- data/spec/models/household_spec.rb +101 -0
- data/spec/models/institution_spec.rb +83 -0
- data/spec/models/investment_spec.rb +89 -0
- data/spec/models/invoice_payment_spec.rb +89 -0
- data/spec/models/invoice_spec.rb +197 -0
- data/spec/models/json_node_spec.rb +35 -0
- data/spec/models/line_items_spec.rb +83 -0
- data/spec/models/location_spec.rb +83 -0
- data/spec/models/member_spec.rb +59 -0
- data/spec/models/merchant_category_code_spec.rb +65 -0
- data/spec/models/merchants_map_spec.rb +47 -0
- data/spec/models/model_asset_size_spec.rb +89 -0
- data/spec/models/model_comment_spec.rb +83 -0
- data/spec/models/model_holding_spec.rb +143 -0
- data/spec/models/model_holding_vo_spec.rb +59 -0
- data/spec/models/model_spec.rb +167 -0
- data/spec/models/model_transaction_spec.rb +95 -0
- data/spec/models/mx_merchant_res_spec.rb +77 -0
- data/spec/models/node_relationship_spec.rb +101 -0
- data/spec/models/node_spec.rb +83 -0
- data/spec/models/notification_client_spec.rb +107 -0
- data/spec/models/notification_setting_spec.rb +107 -0
- data/spec/models/notification_spec.rb +113 -0
- data/spec/models/order_bulk_spec.rb +101 -0
- data/spec/models/order_reconcile_request_spec.rb +65 -0
- data/spec/models/order_reconcile_return_object_spec.rb +65 -0
- data/spec/models/order_spec.rb +155 -0
- data/spec/models/order_status_spec.rb +77 -0
- data/spec/models/order_track_spec.rb +113 -0
- data/spec/models/order_vo_clone_spec.rb +113 -0
- data/spec/models/overflow_bank_link_map_spec.rb +53 -0
- data/spec/models/overflow_settings_spec.rb +95 -0
- data/spec/models/overflow_spec.rb +89 -0
- data/spec/models/overflow_vo_spec.rb +53 -0
- data/spec/models/ownership_spec.rb +65 -0
- data/spec/models/page_account_allocation_mapping_spec.rb +89 -0
- data/spec/models/page_account_permission_vo_spec.rb +89 -0
- data/spec/models/page_account_spec.rb +89 -0
- data/spec/models/page_account_status_spec.rb +89 -0
- data/spec/models/page_account_type_spec.rb +89 -0
- data/spec/models/page_admin_client_spec.rb +89 -0
- data/spec/models/page_aggregation_account_balance_spec.rb +89 -0
- data/spec/models/page_aggregation_account_holding_spec.rb +89 -0
- data/spec/models/page_aggregation_account_spec.rb +89 -0
- data/spec/models/page_aggregation_account_transaction_spec.rb +89 -0
- data/spec/models/page_allocation_composition_spec.rb +89 -0
- data/spec/models/page_allocation_spec.rb +89 -0
- data/spec/models/page_answer_spec.rb +89 -0
- data/spec/models/page_application_spec.rb +89 -0
- data/spec/models/page_audit_log_spec.rb +89 -0
- data/spec/models/page_bank_link_spec.rb +89 -0
- data/spec/models/page_benchmark_spec.rb +89 -0
- data/spec/models/page_budget_spec.rb +89 -0
- data/spec/models/page_business_spec.rb +89 -0
- data/spec/models/page_card_program_spec.rb +89 -0
- data/spec/models/page_card_spec.rb +89 -0
- data/spec/models/page_client_business_card_vo_spec.rb +89 -0
- data/spec/models/page_client_response_spec.rb +89 -0
- data/spec/models/page_client_spec.rb +89 -0
- data/spec/models/page_client_status_spec.rb +89 -0
- data/spec/models/page_contact_spec.rb +89 -0
- data/spec/models/page_customer_revenue_spec.rb +89 -0
- data/spec/models/page_decision_tree_spec.rb +89 -0
- data/spec/models/page_document_spec.rb +89 -0
- data/spec/models/page_external_account_transfer_spec.rb +89 -0
- data/spec/models/page_feature_spec.rb +89 -0
- data/spec/models/page_feature_track_spec.rb +89 -0
- data/spec/models/page_financial_statement_spec.rb +89 -0
- data/spec/models/page_funding_spec.rb +89 -0
- data/spec/models/page_funding_transaction_spec.rb +89 -0
- data/spec/models/page_goal_spec.rb +89 -0
- data/spec/models/page_goal_track_spec.rb +89 -0
- data/spec/models/page_household_spec.rb +89 -0
- data/spec/models/page_institution_spec.rb +89 -0
- data/spec/models/page_invoice_payment_spec.rb +89 -0
- data/spec/models/page_invoice_spec.rb +89 -0
- data/spec/models/page_model_asset_size_spec.rb +89 -0
- data/spec/models/page_model_comment_spec.rb +89 -0
- data/spec/models/page_model_holding_spec.rb +89 -0
- data/spec/models/page_model_spec.rb +89 -0
- data/spec/models/page_model_transaction_spec.rb +89 -0
- data/spec/models/page_mx_merchant_res_spec.rb +101 -0
- data/spec/models/page_node_relationship_spec.rb +89 -0
- data/spec/models/page_node_spec.rb +89 -0
- data/spec/models/page_notification_client_spec.rb +89 -0
- data/spec/models/page_notification_setting_spec.rb +89 -0
- data/spec/models/page_notification_spec.rb +89 -0
- data/spec/models/page_order_bulk_spec.rb +89 -0
- data/spec/models/page_order_spec.rb +89 -0
- data/spec/models/page_order_status_spec.rb +89 -0
- data/spec/models/page_order_track_spec.rb +89 -0
- data/spec/models/page_overflow_settings_spec.rb +89 -0
- data/spec/models/page_overflow_spec.rb +89 -0
- data/spec/models/page_portfolio_asset_size_log_spec.rb +89 -0
- data/spec/models/page_portfolio_comment_spec.rb +89 -0
- data/spec/models/page_portfolio_goal_spec.rb +89 -0
- data/spec/models/page_portfolio_holding_agg_spec.rb +89 -0
- data/spec/models/page_portfolio_holding_log_spec.rb +89 -0
- data/spec/models/page_portfolio_spec.rb +89 -0
- data/spec/models/page_portfolio_transaction_spec.rb +89 -0
- data/spec/models/page_question_spec.rb +89 -0
- data/spec/models/page_questionnaire_spec.rb +89 -0
- data/spec/models/page_reason_code_spec.rb +89 -0
- data/spec/models/page_risk_profile_spec.rb +89 -0
- data/spec/models/page_roundup_settings_spec.rb +89 -0
- data/spec/models/page_roundup_spec.rb +89 -0
- data/spec/models/page_score_spec.rb +89 -0
- data/spec/models/page_security_exclusion_spec.rb +89 -0
- data/spec/models/page_security_price_spec.rb +89 -0
- data/spec/models/page_security_spec.rb +89 -0
- data/spec/models/page_spending_control_spec.rb +89 -0
- data/spec/models/page_stage_spec.rb +89 -0
- data/spec/models/page_transaction_code_spec.rb +89 -0
- data/spec/models/page_webhook_spec.rb +89 -0
- data/spec/models/pageable_spec.rb +71 -0
- data/spec/models/permission_vo_spec.rb +51 -0
- data/spec/models/portfolio_asset_size_log_spec.rb +113 -0
- data/spec/models/portfolio_comment_spec.rb +89 -0
- data/spec/models/portfolio_goal_map_spec.rb +47 -0
- data/spec/models/portfolio_goal_spec.rb +77 -0
- data/spec/models/portfolio_holding_agg_spec.rb +77 -0
- data/spec/models/portfolio_holding_log_spec.rb +119 -0
- data/spec/models/portfolio_spec.rb +125 -0
- data/spec/models/portfolio_transaction_spec.rb +239 -0
- data/spec/models/question_spec.rb +149 -0
- data/spec/models/questionnaire_spec.rb +101 -0
- data/spec/models/reason_code_spec.rb +95 -0
- data/spec/models/risk_profile_spec.rb +101 -0
- data/spec/models/roundup_co_spec.rb +65 -0
- data/spec/models/roundup_settings_spec.rb +119 -0
- data/spec/models/roundup_spec.rb +83 -0
- data/spec/models/score_spec.rb +135 -0
- data/spec/models/securities_composition_spec.rb +59 -0
- data/spec/models/securities_country_spec.rb +47 -0
- data/spec/models/security_composition_vo_spec.rb +119 -0
- data/spec/models/security_country_vo_spec.rb +47 -0
- data/spec/models/security_exclusion_spec.rb +101 -0
- data/spec/models/security_price_spec.rb +113 -0
- data/spec/models/security_spec.rb +185 -0
- data/spec/models/sort_spec.rb +71 -0
- data/spec/models/spending_control_spec.rb +125 -0
- data/spec/models/stage_spec.rb +137 -0
- data/spec/models/stat_spec.rb +47 -0
- data/spec/models/state_spec.rb +53 -0
- data/spec/models/statistic_resource_vo_spec.rb +59 -0
- data/spec/models/token_date_request_spec.rb +71 -0
- data/spec/models/transaction_code_spec.rb +119 -0
- data/spec/models/v_account_vo_spec.rb +71 -0
- data/spec/models/v_client_goal_view_data_spec.rb +71 -0
- data/spec/models/v_portfolio_vo_spec.rb +59 -0
- data/spec/models/webhook_spec.rb +87 -0
- data/spec/spec_helper.rb +111 -0
- metadata +1059 -0
@@ -0,0 +1,71 @@
|
|
1
|
+
=begin
|
2
|
+
#Hydrogen Nucleus API
|
3
|
+
|
4
|
+
#The Hydrogen Nucleus API
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.9.2
|
7
|
+
Contact: info@hydrogenplatform.com
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.19
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for NucleusApi::VAccountVO
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'VAccountVO' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = NucleusApi::VAccountVO.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of VAccountVO' do
|
31
|
+
it 'should create an instance of VAccountVO' do
|
32
|
+
expect(@instance).to be_instance_of(NucleusApi::VAccountVO)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "account_id"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "account_name"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "account_type_id"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "account_type_name"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe 'test attribute "goal_asset_size_by_account"' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
describe 'test attribute "goal_asset_size_by_account_date"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
end
|
@@ -0,0 +1,71 @@
|
|
1
|
+
=begin
|
2
|
+
#Hydrogen Nucleus API
|
3
|
+
|
4
|
+
#The Hydrogen Nucleus API
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.9.2
|
7
|
+
Contact: info@hydrogenplatform.com
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.19
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for NucleusApi::VClientGoalViewData
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'VClientGoalViewData' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = NucleusApi::VClientGoalViewData.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of VClientGoalViewData' do
|
31
|
+
it 'should create an instance of VClientGoalViewData' do
|
32
|
+
expect(@instance).to be_instance_of(NucleusApi::VClientGoalViewData)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "client_asset_size"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "client_asset_size_date"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "client_first_name"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "client_id"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe 'test attribute "client_last_name"' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
describe 'test attribute "client_view_goal_data"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
=begin
|
2
|
+
#Hydrogen Nucleus API
|
3
|
+
|
4
|
+
#The Hydrogen Nucleus API
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.9.2
|
7
|
+
Contact: info@hydrogenplatform.com
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.19
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for NucleusApi::VPortfolioVO
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'VPortfolioVO' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = NucleusApi::VPortfolioVO.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of VPortfolioVO' do
|
31
|
+
it 'should create an instance of VPortfolioVO' do
|
32
|
+
expect(@instance).to be_instance_of(NucleusApi::VPortfolioVO)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "goal_asset_size_by_portfolio"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "goal_asset_size_by_portfolio_date"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "portfolio_id"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "portfolio_name"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
@@ -0,0 +1,87 @@
|
|
1
|
+
=begin
|
2
|
+
#Hydrogen Nucleus API
|
3
|
+
|
4
|
+
#The Hydrogen Nucleus API
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.9.2
|
7
|
+
Contact: info@hydrogenplatform.com
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.19
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for NucleusApi::Webhook
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'Webhook' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = NucleusApi::Webhook.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of Webhook' do
|
31
|
+
it 'should create an instance of Webhook' do
|
32
|
+
expect(@instance).to be_instance_of(NucleusApi::Webhook)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "atom_service"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('Array<String>', ["client", "client_status", "account_status", "account", "card", "card_status", "portfolio_asset_size", "portfolio_transaction", "portfolio_transaction_status", "portfolio_holding", "aggregation_account", "aggregation_account_status", "notification_client", "aggregation_account_balance", "audit_log", "support_ticket", "feature_track", "aggregation_account_transaction", "aggregation_account_transaction_status", "aggregation_account_holding", "order_track", "funding", "funding_status", "budget", "document", "client_response", "client_verified", "document_verified", "bank_link_verified"])
|
39
|
+
# validator.allowable_values.each do |value|
|
40
|
+
# expect { @instance.atom_service = value }.not_to raise_error
|
41
|
+
# end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
describe 'test attribute "create_date"' do
|
46
|
+
it 'should work' do
|
47
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
describe 'test attribute "id"' do
|
52
|
+
it 'should work' do
|
53
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
describe 'test attribute "is_active"' do
|
58
|
+
it 'should work' do
|
59
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
describe 'test attribute "secondary_id"' do
|
64
|
+
it 'should work' do
|
65
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
describe 'test attribute "secret"' do
|
70
|
+
it 'should work' do
|
71
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
describe 'test attribute "update_date"' do
|
76
|
+
it 'should work' do
|
77
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
describe 'test attribute "url"' do
|
82
|
+
it 'should work' do
|
83
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,111 @@
|
|
1
|
+
=begin
|
2
|
+
#Hydrogen Nucleus API
|
3
|
+
|
4
|
+
#The Hydrogen Nucleus API
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.9.2
|
7
|
+
Contact: info@hydrogenplatform.com
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.19
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
# load the gem
|
14
|
+
require 'nucleus_api'
|
15
|
+
|
16
|
+
# The following was generated by the `rspec --init` command. Conventionally, all
|
17
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
18
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
19
|
+
# this file to always be loaded, without a need to explicitly require it in any
|
20
|
+
# files.
|
21
|
+
#
|
22
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
23
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
24
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
25
|
+
# individual file that may not need all of that loaded. Instead, consider making
|
26
|
+
# a separate helper file that requires the additional dependencies and performs
|
27
|
+
# the additional setup, and require it from the spec files that actually need
|
28
|
+
# it.
|
29
|
+
#
|
30
|
+
# The `.rspec` file also contains a few flags that are not defaults but that
|
31
|
+
# users commonly want.
|
32
|
+
#
|
33
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
34
|
+
RSpec.configure do |config|
|
35
|
+
# rspec-expectations config goes here. You can use an alternate
|
36
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
37
|
+
# assertions if you prefer.
|
38
|
+
config.expect_with :rspec do |expectations|
|
39
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
40
|
+
# and `failure_message` of custom matchers include text for helper methods
|
41
|
+
# defined using `chain`, e.g.:
|
42
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
43
|
+
# # => "be bigger than 2 and smaller than 4"
|
44
|
+
# ...rather than:
|
45
|
+
# # => "be bigger than 2"
|
46
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
47
|
+
end
|
48
|
+
|
49
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
50
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
51
|
+
config.mock_with :rspec do |mocks|
|
52
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
53
|
+
# a real object. This is generally recommended, and will default to
|
54
|
+
# `true` in RSpec 4.
|
55
|
+
mocks.verify_partial_doubles = true
|
56
|
+
end
|
57
|
+
|
58
|
+
# The settings below are suggested to provide a good initial experience
|
59
|
+
# with RSpec, but feel free to customize to your heart's content.
|
60
|
+
=begin
|
61
|
+
# These two settings work together to allow you to limit a spec run
|
62
|
+
# to individual examples or groups you care about by tagging them with
|
63
|
+
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
|
64
|
+
# get run.
|
65
|
+
config.filter_run :focus
|
66
|
+
config.run_all_when_everything_filtered = true
|
67
|
+
|
68
|
+
# Allows RSpec to persist some state between runs in order to support
|
69
|
+
# the `--only-failures` and `--next-failure` CLI options. We recommend
|
70
|
+
# you configure your source control system to ignore this file.
|
71
|
+
config.example_status_persistence_file_path = "spec/examples.txt"
|
72
|
+
|
73
|
+
# Limits the available syntax to the non-monkey patched syntax that is
|
74
|
+
# recommended. For more details, see:
|
75
|
+
# - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
|
76
|
+
# - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
77
|
+
# - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
|
78
|
+
config.disable_monkey_patching!
|
79
|
+
|
80
|
+
# This setting enables warnings. It's recommended, but in some cases may
|
81
|
+
# be too noisy due to issues in dependencies.
|
82
|
+
config.warnings = true
|
83
|
+
|
84
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
85
|
+
# file, and it's useful to allow more verbose output when running an
|
86
|
+
# individual spec file.
|
87
|
+
if config.files_to_run.one?
|
88
|
+
# Use the documentation formatter for detailed output,
|
89
|
+
# unless a formatter has already been configured
|
90
|
+
# (e.g. via a command-line flag).
|
91
|
+
config.default_formatter = 'doc'
|
92
|
+
end
|
93
|
+
|
94
|
+
# Print the 10 slowest examples and example groups at the
|
95
|
+
# end of the spec run, to help surface which specs are running
|
96
|
+
# particularly slow.
|
97
|
+
config.profile_examples = 10
|
98
|
+
|
99
|
+
# Run specs in random order to surface order dependencies. If you find an
|
100
|
+
# order dependency and want to debug it, you can fix the order by providing
|
101
|
+
# the seed, which is printed after each run.
|
102
|
+
# --seed 1234
|
103
|
+
config.order = :random
|
104
|
+
|
105
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
106
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
107
|
+
# test failures related to randomization by passing the same `--seed` value
|
108
|
+
# as the one that triggered the failure.
|
109
|
+
Kernel.srand config.seed
|
110
|
+
=end
|
111
|
+
end
|
metadata
ADDED
@@ -0,0 +1,1059 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: hydrogen-nucleus-api
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.9.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Swagger-Codegen
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-07-08 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: typhoeus
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.0'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 1.0.1
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.0'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 1.0.1
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: json
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '2.1'
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 2.1.0
|
43
|
+
type: :runtime
|
44
|
+
prerelease: false
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '2.1'
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 2.1.0
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
name: addressable
|
55
|
+
requirement: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - "~>"
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: '2.3'
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: 2.3.0
|
63
|
+
type: :runtime
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - "~>"
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '2.3'
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: 2.3.0
|
73
|
+
- !ruby/object:Gem::Dependency
|
74
|
+
name: rspec
|
75
|
+
requirement: !ruby/object:Gem::Requirement
|
76
|
+
requirements:
|
77
|
+
- - "~>"
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: '3.6'
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 3.6.0
|
83
|
+
type: :development
|
84
|
+
prerelease: false
|
85
|
+
version_requirements: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '3.6'
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: 3.6.0
|
93
|
+
- !ruby/object:Gem::Dependency
|
94
|
+
name: vcr
|
95
|
+
requirement: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - "~>"
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '3.0'
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: 3.0.1
|
103
|
+
type: :development
|
104
|
+
prerelease: false
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - "~>"
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '3.0'
|
110
|
+
- - ">="
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: 3.0.1
|
113
|
+
- !ruby/object:Gem::Dependency
|
114
|
+
name: webmock
|
115
|
+
requirement: !ruby/object:Gem::Requirement
|
116
|
+
requirements:
|
117
|
+
- - "~>"
|
118
|
+
- !ruby/object:Gem::Version
|
119
|
+
version: '1.24'
|
120
|
+
- - ">="
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: 1.24.3
|
123
|
+
type: :development
|
124
|
+
prerelease: false
|
125
|
+
version_requirements: !ruby/object:Gem::Requirement
|
126
|
+
requirements:
|
127
|
+
- - "~>"
|
128
|
+
- !ruby/object:Gem::Version
|
129
|
+
version: '1.24'
|
130
|
+
- - ">="
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: 1.24.3
|
133
|
+
- !ruby/object:Gem::Dependency
|
134
|
+
name: autotest
|
135
|
+
requirement: !ruby/object:Gem::Requirement
|
136
|
+
requirements:
|
137
|
+
- - "~>"
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
version: '4.4'
|
140
|
+
- - ">="
|
141
|
+
- !ruby/object:Gem::Version
|
142
|
+
version: 4.4.6
|
143
|
+
type: :development
|
144
|
+
prerelease: false
|
145
|
+
version_requirements: !ruby/object:Gem::Requirement
|
146
|
+
requirements:
|
147
|
+
- - "~>"
|
148
|
+
- !ruby/object:Gem::Version
|
149
|
+
version: '4.4'
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: 4.4.6
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: autotest-rails-pure
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - "~>"
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '4.1'
|
160
|
+
- - ">="
|
161
|
+
- !ruby/object:Gem::Version
|
162
|
+
version: 4.1.2
|
163
|
+
type: :development
|
164
|
+
prerelease: false
|
165
|
+
version_requirements: !ruby/object:Gem::Requirement
|
166
|
+
requirements:
|
167
|
+
- - "~>"
|
168
|
+
- !ruby/object:Gem::Version
|
169
|
+
version: '4.1'
|
170
|
+
- - ">="
|
171
|
+
- !ruby/object:Gem::Version
|
172
|
+
version: 4.1.2
|
173
|
+
- !ruby/object:Gem::Dependency
|
174
|
+
name: autotest-growl
|
175
|
+
requirement: !ruby/object:Gem::Requirement
|
176
|
+
requirements:
|
177
|
+
- - "~>"
|
178
|
+
- !ruby/object:Gem::Version
|
179
|
+
version: '0.2'
|
180
|
+
- - ">="
|
181
|
+
- !ruby/object:Gem::Version
|
182
|
+
version: 0.2.16
|
183
|
+
type: :development
|
184
|
+
prerelease: false
|
185
|
+
version_requirements: !ruby/object:Gem::Requirement
|
186
|
+
requirements:
|
187
|
+
- - "~>"
|
188
|
+
- !ruby/object:Gem::Version
|
189
|
+
version: '0.2'
|
190
|
+
- - ">="
|
191
|
+
- !ruby/object:Gem::Version
|
192
|
+
version: 0.2.16
|
193
|
+
- !ruby/object:Gem::Dependency
|
194
|
+
name: autotest-fsevent
|
195
|
+
requirement: !ruby/object:Gem::Requirement
|
196
|
+
requirements:
|
197
|
+
- - "~>"
|
198
|
+
- !ruby/object:Gem::Version
|
199
|
+
version: '0.2'
|
200
|
+
- - ">="
|
201
|
+
- !ruby/object:Gem::Version
|
202
|
+
version: 0.2.12
|
203
|
+
type: :development
|
204
|
+
prerelease: false
|
205
|
+
version_requirements: !ruby/object:Gem::Requirement
|
206
|
+
requirements:
|
207
|
+
- - "~>"
|
208
|
+
- !ruby/object:Gem::Version
|
209
|
+
version: '0.2'
|
210
|
+
- - ">="
|
211
|
+
- !ruby/object:Gem::Version
|
212
|
+
version: 0.2.12
|
213
|
+
description: The Hydrogen Nucleus API
|
214
|
+
email:
|
215
|
+
- info@hydrogenplatform.com
|
216
|
+
executables: []
|
217
|
+
extensions: []
|
218
|
+
extra_rdoc_files: []
|
219
|
+
files:
|
220
|
+
- Gemfile
|
221
|
+
- README.md
|
222
|
+
- Rakefile
|
223
|
+
- git_push.sh
|
224
|
+
- lib/nucleus_api.rb
|
225
|
+
- lib/nucleus_api/api/account_api.rb
|
226
|
+
- lib/nucleus_api/api/admin_client_api.rb
|
227
|
+
- lib/nucleus_api/api/aggregation_account_api.rb
|
228
|
+
- lib/nucleus_api/api/allocation_api.rb
|
229
|
+
- lib/nucleus_api/api/benchmark_api.rb
|
230
|
+
- lib/nucleus_api/api/budget_api.rb
|
231
|
+
- lib/nucleus_api/api/bulk_api.rb
|
232
|
+
- lib/nucleus_api/api/business_api.rb
|
233
|
+
- lib/nucleus_api/api/card_api.rb
|
234
|
+
- lib/nucleus_api/api/client_api.rb
|
235
|
+
- lib/nucleus_api/api/contact_api.rb
|
236
|
+
- lib/nucleus_api/api/decision_tree_api.rb
|
237
|
+
- lib/nucleus_api/api/document_api.rb
|
238
|
+
- lib/nucleus_api/api/financial_statement_api.rb
|
239
|
+
- lib/nucleus_api/api/funding_api.rb
|
240
|
+
- lib/nucleus_api/api/goal_api.rb
|
241
|
+
- lib/nucleus_api/api/household_api.rb
|
242
|
+
- lib/nucleus_api/api/invoice_api.rb
|
243
|
+
- lib/nucleus_api/api/model_api.rb
|
244
|
+
- lib/nucleus_api/api/order_api.rb
|
245
|
+
- lib/nucleus_api/api/overflow_api.rb
|
246
|
+
- lib/nucleus_api/api/portfolio_api.rb
|
247
|
+
- lib/nucleus_api/api/questionnaire_api.rb
|
248
|
+
- lib/nucleus_api/api/resource_api.rb
|
249
|
+
- lib/nucleus_api/api/risk_profile_api.rb
|
250
|
+
- lib/nucleus_api/api/roundup_api.rb
|
251
|
+
- lib/nucleus_api/api/score_api.rb
|
252
|
+
- lib/nucleus_api/api/securities_api.rb
|
253
|
+
- lib/nucleus_api/api/spending_control_api.rb
|
254
|
+
- lib/nucleus_api/api/utils_api.rb
|
255
|
+
- lib/nucleus_api/api/webhook_api.rb
|
256
|
+
- lib/nucleus_api/api_client.rb
|
257
|
+
- lib/nucleus_api/api_error.rb
|
258
|
+
- lib/nucleus_api/auth_configuration.rb
|
259
|
+
- lib/nucleus_api/configuration.rb
|
260
|
+
- lib/nucleus_api/environment.rb
|
261
|
+
- lib/nucleus_api/models/account.rb
|
262
|
+
- lib/nucleus_api/models/account_allocation_mapping.rb
|
263
|
+
- lib/nucleus_api/models/account_map.rb
|
264
|
+
- lib/nucleus_api/models/account_permission_vo.rb
|
265
|
+
- lib/nucleus_api/models/account_portfolio_rebalance_request.rb
|
266
|
+
- lib/nucleus_api/models/account_status.rb
|
267
|
+
- lib/nucleus_api/models/account_type.rb
|
268
|
+
- lib/nucleus_api/models/acl_client_permission_vo.rb
|
269
|
+
- lib/nucleus_api/models/admin_client.rb
|
270
|
+
- lib/nucleus_api/models/aggregation_account.rb
|
271
|
+
- lib/nucleus_api/models/aggregation_account_balance.rb
|
272
|
+
- lib/nucleus_api/models/aggregation_account_holding.rb
|
273
|
+
- lib/nucleus_api/models/aggregation_account_transaction.rb
|
274
|
+
- lib/nucleus_api/models/aggregation_accounts_map.rb
|
275
|
+
- lib/nucleus_api/models/allocation.rb
|
276
|
+
- lib/nucleus_api/models/allocation_aggregated_vo.rb
|
277
|
+
- lib/nucleus_api/models/allocation_composition.rb
|
278
|
+
- lib/nucleus_api/models/allocation_composition_aggregated_vo.rb
|
279
|
+
- lib/nucleus_api/models/allocation_composition_model_holdings_vo.rb
|
280
|
+
- lib/nucleus_api/models/allocation_node_map.rb
|
281
|
+
- lib/nucleus_api/models/answer.rb
|
282
|
+
- lib/nucleus_api/models/answer_map.rb
|
283
|
+
- lib/nucleus_api/models/application.rb
|
284
|
+
- lib/nucleus_api/models/audit_log.rb
|
285
|
+
- lib/nucleus_api/models/available_date_double_vo.rb
|
286
|
+
- lib/nucleus_api/models/balances.rb
|
287
|
+
- lib/nucleus_api/models/bank_credit.rb
|
288
|
+
- lib/nucleus_api/models/bank_link.rb
|
289
|
+
- lib/nucleus_api/models/bank_link_map.rb
|
290
|
+
- lib/nucleus_api/models/benchmark.rb
|
291
|
+
- lib/nucleus_api/models/benchmark_composition.rb
|
292
|
+
- lib/nucleus_api/models/brokers.rb
|
293
|
+
- lib/nucleus_api/models/budget.rb
|
294
|
+
- lib/nucleus_api/models/budget_aggregation_account.rb
|
295
|
+
- lib/nucleus_api/models/budget_object.rb
|
296
|
+
- lib/nucleus_api/models/bulk_transaction.rb
|
297
|
+
- lib/nucleus_api/models/bulk_transaction_vo.rb
|
298
|
+
- lib/nucleus_api/models/business.rb
|
299
|
+
- lib/nucleus_api/models/business_address.rb
|
300
|
+
- lib/nucleus_api/models/business_details_vo.rb
|
301
|
+
- lib/nucleus_api/models/card.rb
|
302
|
+
- lib/nucleus_api/models/card_address.rb
|
303
|
+
- lib/nucleus_api/models/card_balance_vo.rb
|
304
|
+
- lib/nucleus_api/models/card_details_vo.rb
|
305
|
+
- lib/nucleus_api/models/card_program.rb
|
306
|
+
- lib/nucleus_api/models/cash.rb
|
307
|
+
- lib/nucleus_api/models/categories_map.rb
|
308
|
+
- lib/nucleus_api/models/check.rb
|
309
|
+
- lib/nucleus_api/models/check_images.rb
|
310
|
+
- lib/nucleus_api/models/client.rb
|
311
|
+
- lib/nucleus_api/models/client_account_mapping.rb
|
312
|
+
- lib/nucleus_api/models/client_address.rb
|
313
|
+
- lib/nucleus_api/models/client_business_card_vo.rb
|
314
|
+
- lib/nucleus_api/models/client_business_total_card_balance_vo.rb
|
315
|
+
- lib/nucleus_api/models/client_card_vo.rb
|
316
|
+
- lib/nucleus_api/models/client_credentials.rb
|
317
|
+
- lib/nucleus_api/models/client_relationship.rb
|
318
|
+
- lib/nucleus_api/models/client_response.rb
|
319
|
+
- lib/nucleus_api/models/client_status.rb
|
320
|
+
- lib/nucleus_api/models/client_view_goal_data.rb
|
321
|
+
- lib/nucleus_api/models/contact.rb
|
322
|
+
- lib/nucleus_api/models/contact_address.rb
|
323
|
+
- lib/nucleus_api/models/country.rb
|
324
|
+
- lib/nucleus_api/models/currency.rb
|
325
|
+
- lib/nucleus_api/models/customer_revenue.rb
|
326
|
+
- lib/nucleus_api/models/date_double_vo.rb
|
327
|
+
- lib/nucleus_api/models/decision_tree.rb
|
328
|
+
- lib/nucleus_api/models/decision_tree_co.rb
|
329
|
+
- lib/nucleus_api/models/decision_tree_result_vo.rb
|
330
|
+
- lib/nucleus_api/models/document.rb
|
331
|
+
- lib/nucleus_api/models/employment.rb
|
332
|
+
- lib/nucleus_api/models/external_account_transfer.rb
|
333
|
+
- lib/nucleus_api/models/feature.rb
|
334
|
+
- lib/nucleus_api/models/feature_track.rb
|
335
|
+
- lib/nucleus_api/models/financial_statement.rb
|
336
|
+
- lib/nucleus_api/models/funding.rb
|
337
|
+
- lib/nucleus_api/models/funding_request_map.rb
|
338
|
+
- lib/nucleus_api/models/funding_transaction.rb
|
339
|
+
- lib/nucleus_api/models/fx_rate.rb
|
340
|
+
- lib/nucleus_api/models/fx_rate_view.rb
|
341
|
+
- lib/nucleus_api/models/goal.rb
|
342
|
+
- lib/nucleus_api/models/goal_account_mapping.rb
|
343
|
+
- lib/nucleus_api/models/goal_track.rb
|
344
|
+
- lib/nucleus_api/models/goal_track_accounts.rb
|
345
|
+
- lib/nucleus_api/models/household.rb
|
346
|
+
- lib/nucleus_api/models/institution.rb
|
347
|
+
- lib/nucleus_api/models/investment.rb
|
348
|
+
- lib/nucleus_api/models/invoice.rb
|
349
|
+
- lib/nucleus_api/models/invoice_payment.rb
|
350
|
+
- lib/nucleus_api/models/json_node.rb
|
351
|
+
- lib/nucleus_api/models/line_items.rb
|
352
|
+
- lib/nucleus_api/models/location.rb
|
353
|
+
- lib/nucleus_api/models/member.rb
|
354
|
+
- lib/nucleus_api/models/merchant_category_code.rb
|
355
|
+
- lib/nucleus_api/models/merchants_map.rb
|
356
|
+
- lib/nucleus_api/models/model.rb
|
357
|
+
- lib/nucleus_api/models/model_asset_size.rb
|
358
|
+
- lib/nucleus_api/models/model_comment.rb
|
359
|
+
- lib/nucleus_api/models/model_holding.rb
|
360
|
+
- lib/nucleus_api/models/model_holding_vo.rb
|
361
|
+
- lib/nucleus_api/models/model_transaction.rb
|
362
|
+
- lib/nucleus_api/models/mx_merchant_res.rb
|
363
|
+
- lib/nucleus_api/models/node.rb
|
364
|
+
- lib/nucleus_api/models/node_relationship.rb
|
365
|
+
- lib/nucleus_api/models/notification.rb
|
366
|
+
- lib/nucleus_api/models/notification_client.rb
|
367
|
+
- lib/nucleus_api/models/notification_setting.rb
|
368
|
+
- lib/nucleus_api/models/order.rb
|
369
|
+
- lib/nucleus_api/models/order_bulk.rb
|
370
|
+
- lib/nucleus_api/models/order_reconcile_request.rb
|
371
|
+
- lib/nucleus_api/models/order_reconcile_return_object.rb
|
372
|
+
- lib/nucleus_api/models/order_status.rb
|
373
|
+
- lib/nucleus_api/models/order_track.rb
|
374
|
+
- lib/nucleus_api/models/order_vo_clone.rb
|
375
|
+
- lib/nucleus_api/models/overflow.rb
|
376
|
+
- lib/nucleus_api/models/overflow_bank_link_map.rb
|
377
|
+
- lib/nucleus_api/models/overflow_settings.rb
|
378
|
+
- lib/nucleus_api/models/overflow_vo.rb
|
379
|
+
- lib/nucleus_api/models/ownership.rb
|
380
|
+
- lib/nucleus_api/models/page_account.rb
|
381
|
+
- lib/nucleus_api/models/page_account_allocation_mapping.rb
|
382
|
+
- lib/nucleus_api/models/page_account_permission_vo.rb
|
383
|
+
- lib/nucleus_api/models/page_account_status.rb
|
384
|
+
- lib/nucleus_api/models/page_account_type.rb
|
385
|
+
- lib/nucleus_api/models/page_admin_client.rb
|
386
|
+
- lib/nucleus_api/models/page_aggregation_account.rb
|
387
|
+
- lib/nucleus_api/models/page_aggregation_account_balance.rb
|
388
|
+
- lib/nucleus_api/models/page_aggregation_account_holding.rb
|
389
|
+
- lib/nucleus_api/models/page_aggregation_account_transaction.rb
|
390
|
+
- lib/nucleus_api/models/page_allocation.rb
|
391
|
+
- lib/nucleus_api/models/page_allocation_composition.rb
|
392
|
+
- lib/nucleus_api/models/page_answer.rb
|
393
|
+
- lib/nucleus_api/models/page_application.rb
|
394
|
+
- lib/nucleus_api/models/page_audit_log.rb
|
395
|
+
- lib/nucleus_api/models/page_bank_link.rb
|
396
|
+
- lib/nucleus_api/models/page_benchmark.rb
|
397
|
+
- lib/nucleus_api/models/page_budget.rb
|
398
|
+
- lib/nucleus_api/models/page_business.rb
|
399
|
+
- lib/nucleus_api/models/page_card.rb
|
400
|
+
- lib/nucleus_api/models/page_card_program.rb
|
401
|
+
- lib/nucleus_api/models/page_client.rb
|
402
|
+
- lib/nucleus_api/models/page_client_business_card_vo.rb
|
403
|
+
- lib/nucleus_api/models/page_client_response.rb
|
404
|
+
- lib/nucleus_api/models/page_client_status.rb
|
405
|
+
- lib/nucleus_api/models/page_contact.rb
|
406
|
+
- lib/nucleus_api/models/page_customer_revenue.rb
|
407
|
+
- lib/nucleus_api/models/page_decision_tree.rb
|
408
|
+
- lib/nucleus_api/models/page_document.rb
|
409
|
+
- lib/nucleus_api/models/page_external_account_transfer.rb
|
410
|
+
- lib/nucleus_api/models/page_feature.rb
|
411
|
+
- lib/nucleus_api/models/page_feature_track.rb
|
412
|
+
- lib/nucleus_api/models/page_financial_statement.rb
|
413
|
+
- lib/nucleus_api/models/page_funding.rb
|
414
|
+
- lib/nucleus_api/models/page_funding_transaction.rb
|
415
|
+
- lib/nucleus_api/models/page_goal.rb
|
416
|
+
- lib/nucleus_api/models/page_goal_track.rb
|
417
|
+
- lib/nucleus_api/models/page_household.rb
|
418
|
+
- lib/nucleus_api/models/page_institution.rb
|
419
|
+
- lib/nucleus_api/models/page_invoice.rb
|
420
|
+
- lib/nucleus_api/models/page_invoice_payment.rb
|
421
|
+
- lib/nucleus_api/models/page_model.rb
|
422
|
+
- lib/nucleus_api/models/page_model_asset_size.rb
|
423
|
+
- lib/nucleus_api/models/page_model_comment.rb
|
424
|
+
- lib/nucleus_api/models/page_model_holding.rb
|
425
|
+
- lib/nucleus_api/models/page_model_transaction.rb
|
426
|
+
- lib/nucleus_api/models/page_mx_merchant_res.rb
|
427
|
+
- lib/nucleus_api/models/page_node.rb
|
428
|
+
- lib/nucleus_api/models/page_node_relationship.rb
|
429
|
+
- lib/nucleus_api/models/page_notification.rb
|
430
|
+
- lib/nucleus_api/models/page_notification_client.rb
|
431
|
+
- lib/nucleus_api/models/page_notification_setting.rb
|
432
|
+
- lib/nucleus_api/models/page_order.rb
|
433
|
+
- lib/nucleus_api/models/page_order_bulk.rb
|
434
|
+
- lib/nucleus_api/models/page_order_status.rb
|
435
|
+
- lib/nucleus_api/models/page_order_track.rb
|
436
|
+
- lib/nucleus_api/models/page_overflow.rb
|
437
|
+
- lib/nucleus_api/models/page_overflow_settings.rb
|
438
|
+
- lib/nucleus_api/models/page_portfolio.rb
|
439
|
+
- lib/nucleus_api/models/page_portfolio_asset_size_log.rb
|
440
|
+
- lib/nucleus_api/models/page_portfolio_comment.rb
|
441
|
+
- lib/nucleus_api/models/page_portfolio_goal.rb
|
442
|
+
- lib/nucleus_api/models/page_portfolio_holding_agg.rb
|
443
|
+
- lib/nucleus_api/models/page_portfolio_holding_log.rb
|
444
|
+
- lib/nucleus_api/models/page_portfolio_transaction.rb
|
445
|
+
- lib/nucleus_api/models/page_question.rb
|
446
|
+
- lib/nucleus_api/models/page_questionnaire.rb
|
447
|
+
- lib/nucleus_api/models/page_reason_code.rb
|
448
|
+
- lib/nucleus_api/models/page_risk_profile.rb
|
449
|
+
- lib/nucleus_api/models/page_roundup.rb
|
450
|
+
- lib/nucleus_api/models/page_roundup_settings.rb
|
451
|
+
- lib/nucleus_api/models/page_score.rb
|
452
|
+
- lib/nucleus_api/models/page_security.rb
|
453
|
+
- lib/nucleus_api/models/page_security_exclusion.rb
|
454
|
+
- lib/nucleus_api/models/page_security_price.rb
|
455
|
+
- lib/nucleus_api/models/page_spending_control.rb
|
456
|
+
- lib/nucleus_api/models/page_stage.rb
|
457
|
+
- lib/nucleus_api/models/page_transaction_code.rb
|
458
|
+
- lib/nucleus_api/models/page_webhook.rb
|
459
|
+
- lib/nucleus_api/models/pageable.rb
|
460
|
+
- lib/nucleus_api/models/permission_vo.rb
|
461
|
+
- lib/nucleus_api/models/portfolio.rb
|
462
|
+
- lib/nucleus_api/models/portfolio_asset_size_log.rb
|
463
|
+
- lib/nucleus_api/models/portfolio_comment.rb
|
464
|
+
- lib/nucleus_api/models/portfolio_goal.rb
|
465
|
+
- lib/nucleus_api/models/portfolio_goal_map.rb
|
466
|
+
- lib/nucleus_api/models/portfolio_holding_agg.rb
|
467
|
+
- lib/nucleus_api/models/portfolio_holding_log.rb
|
468
|
+
- lib/nucleus_api/models/portfolio_transaction.rb
|
469
|
+
- lib/nucleus_api/models/question.rb
|
470
|
+
- lib/nucleus_api/models/questionnaire.rb
|
471
|
+
- lib/nucleus_api/models/reason_code.rb
|
472
|
+
- lib/nucleus_api/models/risk_profile.rb
|
473
|
+
- lib/nucleus_api/models/roundup.rb
|
474
|
+
- lib/nucleus_api/models/roundup_co.rb
|
475
|
+
- lib/nucleus_api/models/roundup_settings.rb
|
476
|
+
- lib/nucleus_api/models/score.rb
|
477
|
+
- lib/nucleus_api/models/securities_composition.rb
|
478
|
+
- lib/nucleus_api/models/securities_country.rb
|
479
|
+
- lib/nucleus_api/models/security.rb
|
480
|
+
- lib/nucleus_api/models/security_composition_vo.rb
|
481
|
+
- lib/nucleus_api/models/security_country_vo.rb
|
482
|
+
- lib/nucleus_api/models/security_exclusion.rb
|
483
|
+
- lib/nucleus_api/models/security_price.rb
|
484
|
+
- lib/nucleus_api/models/sort.rb
|
485
|
+
- lib/nucleus_api/models/spending_control.rb
|
486
|
+
- lib/nucleus_api/models/stage.rb
|
487
|
+
- lib/nucleus_api/models/stat.rb
|
488
|
+
- lib/nucleus_api/models/state.rb
|
489
|
+
- lib/nucleus_api/models/statistic_resource_vo.rb
|
490
|
+
- lib/nucleus_api/models/token_date_request.rb
|
491
|
+
- lib/nucleus_api/models/transaction_code.rb
|
492
|
+
- lib/nucleus_api/models/v_account_vo.rb
|
493
|
+
- lib/nucleus_api/models/v_client_goal_view_data.rb
|
494
|
+
- lib/nucleus_api/models/v_portfolio_vo.rb
|
495
|
+
- lib/nucleus_api/models/webhook.rb
|
496
|
+
- lib/nucleus_api/version.rb
|
497
|
+
- nucleus_api.gemspec
|
498
|
+
- spec/api/account_api_spec.rb
|
499
|
+
- spec/api/admin_client_api_spec.rb
|
500
|
+
- spec/api/aggregation_account_api_spec.rb
|
501
|
+
- spec/api/allocation_api_spec.rb
|
502
|
+
- spec/api/benchmark_api_spec.rb
|
503
|
+
- spec/api/budget_api_spec.rb
|
504
|
+
- spec/api/bulk_api_spec.rb
|
505
|
+
- spec/api/business_api_spec.rb
|
506
|
+
- spec/api/card_api_spec.rb
|
507
|
+
- spec/api/client_api_spec.rb
|
508
|
+
- spec/api/contact_api_spec.rb
|
509
|
+
- spec/api/decision_tree_api_spec.rb
|
510
|
+
- spec/api/document_api_spec.rb
|
511
|
+
- spec/api/financial_statement_api_spec.rb
|
512
|
+
- spec/api/funding_api_spec.rb
|
513
|
+
- spec/api/goal_api_spec.rb
|
514
|
+
- spec/api/household_api_spec.rb
|
515
|
+
- spec/api/invoice_api_spec.rb
|
516
|
+
- spec/api/model_api_spec.rb
|
517
|
+
- spec/api/order_api_spec.rb
|
518
|
+
- spec/api/overflow_api_spec.rb
|
519
|
+
- spec/api/portfolio_api_spec.rb
|
520
|
+
- spec/api/questionnaire_api_spec.rb
|
521
|
+
- spec/api/resource_api_spec.rb
|
522
|
+
- spec/api/risk_profile_api_spec.rb
|
523
|
+
- spec/api/roundup_api_spec.rb
|
524
|
+
- spec/api/score_api_spec.rb
|
525
|
+
- spec/api/securities_api_spec.rb
|
526
|
+
- spec/api/spending_control_api_spec.rb
|
527
|
+
- spec/api/utils_api_spec.rb
|
528
|
+
- spec/api/webhook_api_spec.rb
|
529
|
+
- spec/api_client_spec.rb
|
530
|
+
- spec/configuration_spec.rb
|
531
|
+
- spec/models/account_allocation_mapping_spec.rb
|
532
|
+
- spec/models/account_map_spec.rb
|
533
|
+
- spec/models/account_permission_vo_spec.rb
|
534
|
+
- spec/models/account_portfolio_rebalance_request_spec.rb
|
535
|
+
- spec/models/account_spec.rb
|
536
|
+
- spec/models/account_status_spec.rb
|
537
|
+
- spec/models/account_type_spec.rb
|
538
|
+
- spec/models/acl_client_permission_vo_spec.rb
|
539
|
+
- spec/models/admin_client_spec.rb
|
540
|
+
- spec/models/aggregation_account_balance_spec.rb
|
541
|
+
- spec/models/aggregation_account_holding_spec.rb
|
542
|
+
- spec/models/aggregation_account_spec.rb
|
543
|
+
- spec/models/aggregation_account_transaction_spec.rb
|
544
|
+
- spec/models/aggregation_accounts_map_spec.rb
|
545
|
+
- spec/models/allocation_aggregated_vo_spec.rb
|
546
|
+
- spec/models/allocation_composition_aggregated_vo_spec.rb
|
547
|
+
- spec/models/allocation_composition_model_holdings_vo_spec.rb
|
548
|
+
- spec/models/allocation_composition_spec.rb
|
549
|
+
- spec/models/allocation_node_map_spec.rb
|
550
|
+
- spec/models/allocation_spec.rb
|
551
|
+
- spec/models/answer_map_spec.rb
|
552
|
+
- spec/models/answer_spec.rb
|
553
|
+
- spec/models/application_spec.rb
|
554
|
+
- spec/models/audit_log_spec.rb
|
555
|
+
- spec/models/available_date_double_vo_spec.rb
|
556
|
+
- spec/models/balances_spec.rb
|
557
|
+
- spec/models/bank_credit_spec.rb
|
558
|
+
- spec/models/bank_link_map_spec.rb
|
559
|
+
- spec/models/bank_link_spec.rb
|
560
|
+
- spec/models/benchmark_composition_spec.rb
|
561
|
+
- spec/models/benchmark_spec.rb
|
562
|
+
- spec/models/brokers_spec.rb
|
563
|
+
- spec/models/budget_aggregation_account_spec.rb
|
564
|
+
- spec/models/budget_object_spec.rb
|
565
|
+
- spec/models/budget_spec.rb
|
566
|
+
- spec/models/bulk_transaction_spec.rb
|
567
|
+
- spec/models/bulk_transaction_vo_spec.rb
|
568
|
+
- spec/models/business_address_spec.rb
|
569
|
+
- spec/models/business_details_vo_spec.rb
|
570
|
+
- spec/models/business_spec.rb
|
571
|
+
- spec/models/card_address_spec.rb
|
572
|
+
- spec/models/card_balance_vo_spec.rb
|
573
|
+
- spec/models/card_details_vo_spec.rb
|
574
|
+
- spec/models/card_program_spec.rb
|
575
|
+
- spec/models/card_spec.rb
|
576
|
+
- spec/models/cash_spec.rb
|
577
|
+
- spec/models/categories_map_spec.rb
|
578
|
+
- spec/models/check_images_spec.rb
|
579
|
+
- spec/models/check_spec.rb
|
580
|
+
- spec/models/client_account_mapping_spec.rb
|
581
|
+
- spec/models/client_address_spec.rb
|
582
|
+
- spec/models/client_business_card_vo_spec.rb
|
583
|
+
- spec/models/client_business_total_card_balance_vo_spec.rb
|
584
|
+
- spec/models/client_card_vo_spec.rb
|
585
|
+
- spec/models/client_credentials_spec.rb
|
586
|
+
- spec/models/client_relationship_spec.rb
|
587
|
+
- spec/models/client_response_spec.rb
|
588
|
+
- spec/models/client_spec.rb
|
589
|
+
- spec/models/client_status_spec.rb
|
590
|
+
- spec/models/client_view_goal_data_spec.rb
|
591
|
+
- spec/models/contact_address_spec.rb
|
592
|
+
- spec/models/contact_spec.rb
|
593
|
+
- spec/models/country_spec.rb
|
594
|
+
- spec/models/currency_spec.rb
|
595
|
+
- spec/models/customer_revenue_spec.rb
|
596
|
+
- spec/models/date_double_vo_spec.rb
|
597
|
+
- spec/models/decision_tree_co_spec.rb
|
598
|
+
- spec/models/decision_tree_result_vo_spec.rb
|
599
|
+
- spec/models/decision_tree_spec.rb
|
600
|
+
- spec/models/document_spec.rb
|
601
|
+
- spec/models/employment_spec.rb
|
602
|
+
- spec/models/external_account_transfer_spec.rb
|
603
|
+
- spec/models/feature_spec.rb
|
604
|
+
- spec/models/feature_track_spec.rb
|
605
|
+
- spec/models/financial_statement_spec.rb
|
606
|
+
- spec/models/funding_request_map_spec.rb
|
607
|
+
- spec/models/funding_spec.rb
|
608
|
+
- spec/models/funding_transaction_spec.rb
|
609
|
+
- spec/models/fx_rate_spec.rb
|
610
|
+
- spec/models/fx_rate_view_spec.rb
|
611
|
+
- spec/models/goal_account_mapping_spec.rb
|
612
|
+
- spec/models/goal_spec.rb
|
613
|
+
- spec/models/goal_track_accounts_spec.rb
|
614
|
+
- spec/models/goal_track_spec.rb
|
615
|
+
- spec/models/household_spec.rb
|
616
|
+
- spec/models/institution_spec.rb
|
617
|
+
- spec/models/investment_spec.rb
|
618
|
+
- spec/models/invoice_payment_spec.rb
|
619
|
+
- spec/models/invoice_spec.rb
|
620
|
+
- spec/models/json_node_spec.rb
|
621
|
+
- spec/models/line_items_spec.rb
|
622
|
+
- spec/models/location_spec.rb
|
623
|
+
- spec/models/member_spec.rb
|
624
|
+
- spec/models/merchant_category_code_spec.rb
|
625
|
+
- spec/models/merchants_map_spec.rb
|
626
|
+
- spec/models/model_asset_size_spec.rb
|
627
|
+
- spec/models/model_comment_spec.rb
|
628
|
+
- spec/models/model_holding_spec.rb
|
629
|
+
- spec/models/model_holding_vo_spec.rb
|
630
|
+
- spec/models/model_spec.rb
|
631
|
+
- spec/models/model_transaction_spec.rb
|
632
|
+
- spec/models/mx_merchant_res_spec.rb
|
633
|
+
- spec/models/node_relationship_spec.rb
|
634
|
+
- spec/models/node_spec.rb
|
635
|
+
- spec/models/notification_client_spec.rb
|
636
|
+
- spec/models/notification_setting_spec.rb
|
637
|
+
- spec/models/notification_spec.rb
|
638
|
+
- spec/models/order_bulk_spec.rb
|
639
|
+
- spec/models/order_reconcile_request_spec.rb
|
640
|
+
- spec/models/order_reconcile_return_object_spec.rb
|
641
|
+
- spec/models/order_spec.rb
|
642
|
+
- spec/models/order_status_spec.rb
|
643
|
+
- spec/models/order_track_spec.rb
|
644
|
+
- spec/models/order_vo_clone_spec.rb
|
645
|
+
- spec/models/overflow_bank_link_map_spec.rb
|
646
|
+
- spec/models/overflow_settings_spec.rb
|
647
|
+
- spec/models/overflow_spec.rb
|
648
|
+
- spec/models/overflow_vo_spec.rb
|
649
|
+
- spec/models/ownership_spec.rb
|
650
|
+
- spec/models/page_account_allocation_mapping_spec.rb
|
651
|
+
- spec/models/page_account_permission_vo_spec.rb
|
652
|
+
- spec/models/page_account_spec.rb
|
653
|
+
- spec/models/page_account_status_spec.rb
|
654
|
+
- spec/models/page_account_type_spec.rb
|
655
|
+
- spec/models/page_admin_client_spec.rb
|
656
|
+
- spec/models/page_aggregation_account_balance_spec.rb
|
657
|
+
- spec/models/page_aggregation_account_holding_spec.rb
|
658
|
+
- spec/models/page_aggregation_account_spec.rb
|
659
|
+
- spec/models/page_aggregation_account_transaction_spec.rb
|
660
|
+
- spec/models/page_allocation_composition_spec.rb
|
661
|
+
- spec/models/page_allocation_spec.rb
|
662
|
+
- spec/models/page_answer_spec.rb
|
663
|
+
- spec/models/page_application_spec.rb
|
664
|
+
- spec/models/page_audit_log_spec.rb
|
665
|
+
- spec/models/page_bank_link_spec.rb
|
666
|
+
- spec/models/page_benchmark_spec.rb
|
667
|
+
- spec/models/page_budget_spec.rb
|
668
|
+
- spec/models/page_business_spec.rb
|
669
|
+
- spec/models/page_card_program_spec.rb
|
670
|
+
- spec/models/page_card_spec.rb
|
671
|
+
- spec/models/page_client_business_card_vo_spec.rb
|
672
|
+
- spec/models/page_client_response_spec.rb
|
673
|
+
- spec/models/page_client_spec.rb
|
674
|
+
- spec/models/page_client_status_spec.rb
|
675
|
+
- spec/models/page_contact_spec.rb
|
676
|
+
- spec/models/page_customer_revenue_spec.rb
|
677
|
+
- spec/models/page_decision_tree_spec.rb
|
678
|
+
- spec/models/page_document_spec.rb
|
679
|
+
- spec/models/page_external_account_transfer_spec.rb
|
680
|
+
- spec/models/page_feature_spec.rb
|
681
|
+
- spec/models/page_feature_track_spec.rb
|
682
|
+
- spec/models/page_financial_statement_spec.rb
|
683
|
+
- spec/models/page_funding_spec.rb
|
684
|
+
- spec/models/page_funding_transaction_spec.rb
|
685
|
+
- spec/models/page_goal_spec.rb
|
686
|
+
- spec/models/page_goal_track_spec.rb
|
687
|
+
- spec/models/page_household_spec.rb
|
688
|
+
- spec/models/page_institution_spec.rb
|
689
|
+
- spec/models/page_invoice_payment_spec.rb
|
690
|
+
- spec/models/page_invoice_spec.rb
|
691
|
+
- spec/models/page_model_asset_size_spec.rb
|
692
|
+
- spec/models/page_model_comment_spec.rb
|
693
|
+
- spec/models/page_model_holding_spec.rb
|
694
|
+
- spec/models/page_model_spec.rb
|
695
|
+
- spec/models/page_model_transaction_spec.rb
|
696
|
+
- spec/models/page_mx_merchant_res_spec.rb
|
697
|
+
- spec/models/page_node_relationship_spec.rb
|
698
|
+
- spec/models/page_node_spec.rb
|
699
|
+
- spec/models/page_notification_client_spec.rb
|
700
|
+
- spec/models/page_notification_setting_spec.rb
|
701
|
+
- spec/models/page_notification_spec.rb
|
702
|
+
- spec/models/page_order_bulk_spec.rb
|
703
|
+
- spec/models/page_order_spec.rb
|
704
|
+
- spec/models/page_order_status_spec.rb
|
705
|
+
- spec/models/page_order_track_spec.rb
|
706
|
+
- spec/models/page_overflow_settings_spec.rb
|
707
|
+
- spec/models/page_overflow_spec.rb
|
708
|
+
- spec/models/page_portfolio_asset_size_log_spec.rb
|
709
|
+
- spec/models/page_portfolio_comment_spec.rb
|
710
|
+
- spec/models/page_portfolio_goal_spec.rb
|
711
|
+
- spec/models/page_portfolio_holding_agg_spec.rb
|
712
|
+
- spec/models/page_portfolio_holding_log_spec.rb
|
713
|
+
- spec/models/page_portfolio_spec.rb
|
714
|
+
- spec/models/page_portfolio_transaction_spec.rb
|
715
|
+
- spec/models/page_question_spec.rb
|
716
|
+
- spec/models/page_questionnaire_spec.rb
|
717
|
+
- spec/models/page_reason_code_spec.rb
|
718
|
+
- spec/models/page_risk_profile_spec.rb
|
719
|
+
- spec/models/page_roundup_settings_spec.rb
|
720
|
+
- spec/models/page_roundup_spec.rb
|
721
|
+
- spec/models/page_score_spec.rb
|
722
|
+
- spec/models/page_security_exclusion_spec.rb
|
723
|
+
- spec/models/page_security_price_spec.rb
|
724
|
+
- spec/models/page_security_spec.rb
|
725
|
+
- spec/models/page_spending_control_spec.rb
|
726
|
+
- spec/models/page_stage_spec.rb
|
727
|
+
- spec/models/page_transaction_code_spec.rb
|
728
|
+
- spec/models/page_webhook_spec.rb
|
729
|
+
- spec/models/pageable_spec.rb
|
730
|
+
- spec/models/permission_vo_spec.rb
|
731
|
+
- spec/models/portfolio_asset_size_log_spec.rb
|
732
|
+
- spec/models/portfolio_comment_spec.rb
|
733
|
+
- spec/models/portfolio_goal_map_spec.rb
|
734
|
+
- spec/models/portfolio_goal_spec.rb
|
735
|
+
- spec/models/portfolio_holding_agg_spec.rb
|
736
|
+
- spec/models/portfolio_holding_log_spec.rb
|
737
|
+
- spec/models/portfolio_spec.rb
|
738
|
+
- spec/models/portfolio_transaction_spec.rb
|
739
|
+
- spec/models/question_spec.rb
|
740
|
+
- spec/models/questionnaire_spec.rb
|
741
|
+
- spec/models/reason_code_spec.rb
|
742
|
+
- spec/models/risk_profile_spec.rb
|
743
|
+
- spec/models/roundup_co_spec.rb
|
744
|
+
- spec/models/roundup_settings_spec.rb
|
745
|
+
- spec/models/roundup_spec.rb
|
746
|
+
- spec/models/score_spec.rb
|
747
|
+
- spec/models/securities_composition_spec.rb
|
748
|
+
- spec/models/securities_country_spec.rb
|
749
|
+
- spec/models/security_composition_vo_spec.rb
|
750
|
+
- spec/models/security_country_vo_spec.rb
|
751
|
+
- spec/models/security_exclusion_spec.rb
|
752
|
+
- spec/models/security_price_spec.rb
|
753
|
+
- spec/models/security_spec.rb
|
754
|
+
- spec/models/sort_spec.rb
|
755
|
+
- spec/models/spending_control_spec.rb
|
756
|
+
- spec/models/stage_spec.rb
|
757
|
+
- spec/models/stat_spec.rb
|
758
|
+
- spec/models/state_spec.rb
|
759
|
+
- spec/models/statistic_resource_vo_spec.rb
|
760
|
+
- spec/models/token_date_request_spec.rb
|
761
|
+
- spec/models/transaction_code_spec.rb
|
762
|
+
- spec/models/v_account_vo_spec.rb
|
763
|
+
- spec/models/v_client_goal_view_data_spec.rb
|
764
|
+
- spec/models/v_portfolio_vo_spec.rb
|
765
|
+
- spec/models/webhook_spec.rb
|
766
|
+
- spec/spec_helper.rb
|
767
|
+
homepage: https://github.com/swagger-api/swagger-codegen
|
768
|
+
licenses:
|
769
|
+
- Unlicense
|
770
|
+
metadata: {}
|
771
|
+
post_install_message:
|
772
|
+
rdoc_options: []
|
773
|
+
require_paths:
|
774
|
+
- lib
|
775
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
776
|
+
requirements:
|
777
|
+
- - ">="
|
778
|
+
- !ruby/object:Gem::Version
|
779
|
+
version: '1.9'
|
780
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
781
|
+
requirements:
|
782
|
+
- - ">="
|
783
|
+
- !ruby/object:Gem::Version
|
784
|
+
version: '0'
|
785
|
+
requirements: []
|
786
|
+
rubygems_version: 3.1.2
|
787
|
+
signing_key:
|
788
|
+
specification_version: 4
|
789
|
+
summary: Hydrogen Nucleus API Ruby Gem
|
790
|
+
test_files:
|
791
|
+
- spec/api/roundup_api_spec.rb
|
792
|
+
- spec/api/allocation_api_spec.rb
|
793
|
+
- spec/api/contact_api_spec.rb
|
794
|
+
- spec/api/overflow_api_spec.rb
|
795
|
+
- spec/api/client_api_spec.rb
|
796
|
+
- spec/api/financial_statement_api_spec.rb
|
797
|
+
- spec/api/order_api_spec.rb
|
798
|
+
- spec/api/document_api_spec.rb
|
799
|
+
- spec/api/business_api_spec.rb
|
800
|
+
- spec/api/card_api_spec.rb
|
801
|
+
- spec/api/spending_control_api_spec.rb
|
802
|
+
- spec/api/invoice_api_spec.rb
|
803
|
+
- spec/api/account_api_spec.rb
|
804
|
+
- spec/api/admin_client_api_spec.rb
|
805
|
+
- spec/api/webhook_api_spec.rb
|
806
|
+
- spec/api/securities_api_spec.rb
|
807
|
+
- spec/api/decision_tree_api_spec.rb
|
808
|
+
- spec/api/budget_api_spec.rb
|
809
|
+
- spec/api/questionnaire_api_spec.rb
|
810
|
+
- spec/api/aggregation_account_api_spec.rb
|
811
|
+
- spec/api/household_api_spec.rb
|
812
|
+
- spec/api/goal_api_spec.rb
|
813
|
+
- spec/api/risk_profile_api_spec.rb
|
814
|
+
- spec/api/portfolio_api_spec.rb
|
815
|
+
- spec/api/utils_api_spec.rb
|
816
|
+
- spec/api/bulk_api_spec.rb
|
817
|
+
- spec/api/resource_api_spec.rb
|
818
|
+
- spec/api/score_api_spec.rb
|
819
|
+
- spec/api/benchmark_api_spec.rb
|
820
|
+
- spec/api/funding_api_spec.rb
|
821
|
+
- spec/api/model_api_spec.rb
|
822
|
+
- spec/api_client_spec.rb
|
823
|
+
- spec/configuration_spec.rb
|
824
|
+
- spec/models/page_aggregation_account_spec.rb
|
825
|
+
- spec/models/order_reconcile_request_spec.rb
|
826
|
+
- spec/models/v_account_vo_spec.rb
|
827
|
+
- spec/models/allocation_node_map_spec.rb
|
828
|
+
- spec/models/client_view_goal_data_spec.rb
|
829
|
+
- spec/models/allocation_aggregated_vo_spec.rb
|
830
|
+
- spec/models/portfolio_asset_size_log_spec.rb
|
831
|
+
- spec/models/model_holding_vo_spec.rb
|
832
|
+
- spec/models/portfolio_comment_spec.rb
|
833
|
+
- spec/models/security_composition_vo_spec.rb
|
834
|
+
- spec/models/roundup_settings_spec.rb
|
835
|
+
- spec/models/node_relationship_spec.rb
|
836
|
+
- spec/models/page_node_relationship_spec.rb
|
837
|
+
- spec/models/balances_spec.rb
|
838
|
+
- spec/models/account_spec.rb
|
839
|
+
- spec/models/aggregation_accounts_map_spec.rb
|
840
|
+
- spec/models/card_program_spec.rb
|
841
|
+
- spec/models/token_date_request_spec.rb
|
842
|
+
- spec/models/page_card_spec.rb
|
843
|
+
- spec/models/page_feature_track_spec.rb
|
844
|
+
- spec/models/page_card_program_spec.rb
|
845
|
+
- spec/models/reason_code_spec.rb
|
846
|
+
- spec/models/notification_spec.rb
|
847
|
+
- spec/models/portfolio_spec.rb
|
848
|
+
- spec/models/page_account_allocation_mapping_spec.rb
|
849
|
+
- spec/models/decision_tree_result_vo_spec.rb
|
850
|
+
- spec/models/page_risk_profile_spec.rb
|
851
|
+
- spec/models/aggregation_account_balance_spec.rb
|
852
|
+
- spec/models/contact_address_spec.rb
|
853
|
+
- spec/models/portfolio_goal_map_spec.rb
|
854
|
+
- spec/models/funding_spec.rb
|
855
|
+
- spec/models/page_account_type_spec.rb
|
856
|
+
- spec/models/page_invoice_payment_spec.rb
|
857
|
+
- spec/models/page_external_account_transfer_spec.rb
|
858
|
+
- spec/models/budget_spec.rb
|
859
|
+
- spec/models/page_account_spec.rb
|
860
|
+
- spec/models/page_financial_statement_spec.rb
|
861
|
+
- spec/models/order_track_spec.rb
|
862
|
+
- spec/models/account_type_spec.rb
|
863
|
+
- spec/models/document_spec.rb
|
864
|
+
- spec/models/page_spending_control_spec.rb
|
865
|
+
- spec/models/customer_revenue_spec.rb
|
866
|
+
- spec/models/page_application_spec.rb
|
867
|
+
- spec/models/page_aggregation_account_balance_spec.rb
|
868
|
+
- spec/models/page_aggregation_account_transaction_spec.rb
|
869
|
+
- spec/models/v_portfolio_vo_spec.rb
|
870
|
+
- spec/models/portfolio_goal_spec.rb
|
871
|
+
- spec/models/page_model_comment_spec.rb
|
872
|
+
- spec/models/account_portfolio_rebalance_request_spec.rb
|
873
|
+
- spec/models/pageable_spec.rb
|
874
|
+
- spec/models/member_spec.rb
|
875
|
+
- spec/models/bulk_transaction_vo_spec.rb
|
876
|
+
- spec/models/employment_spec.rb
|
877
|
+
- spec/models/security_price_spec.rb
|
878
|
+
- spec/models/contact_spec.rb
|
879
|
+
- spec/models/allocation_composition_model_holdings_vo_spec.rb
|
880
|
+
- spec/models/page_question_spec.rb
|
881
|
+
- spec/models/business_address_spec.rb
|
882
|
+
- spec/models/page_portfolio_asset_size_log_spec.rb
|
883
|
+
- spec/models/location_spec.rb
|
884
|
+
- spec/models/answer_spec.rb
|
885
|
+
- spec/models/order_bulk_spec.rb
|
886
|
+
- spec/models/account_permission_vo_spec.rb
|
887
|
+
- spec/models/feature_track_spec.rb
|
888
|
+
- spec/models/page_account_status_spec.rb
|
889
|
+
- spec/models/aggregation_account_spec.rb
|
890
|
+
- spec/models/page_notification_spec.rb
|
891
|
+
- spec/models/business_details_vo_spec.rb
|
892
|
+
- spec/models/model_transaction_spec.rb
|
893
|
+
- spec/models/account_map_spec.rb
|
894
|
+
- spec/models/merchants_map_spec.rb
|
895
|
+
- spec/models/page_portfolio_transaction_spec.rb
|
896
|
+
- spec/models/overflow_vo_spec.rb
|
897
|
+
- spec/models/page_portfolio_holding_agg_spec.rb
|
898
|
+
- spec/models/notification_client_spec.rb
|
899
|
+
- spec/models/card_details_vo_spec.rb
|
900
|
+
- spec/models/client_credentials_spec.rb
|
901
|
+
- spec/models/portfolio_holding_agg_spec.rb
|
902
|
+
- spec/models/score_spec.rb
|
903
|
+
- spec/models/roundup_spec.rb
|
904
|
+
- spec/models/bank_link_spec.rb
|
905
|
+
- spec/models/client_response_spec.rb
|
906
|
+
- spec/models/model_holding_spec.rb
|
907
|
+
- spec/models/check_spec.rb
|
908
|
+
- spec/models/client_relationship_spec.rb
|
909
|
+
- spec/models/page_notification_client_spec.rb
|
910
|
+
- spec/models/page_document_spec.rb
|
911
|
+
- spec/models/sort_spec.rb
|
912
|
+
- spec/models/categories_map_spec.rb
|
913
|
+
- spec/models/page_invoice_spec.rb
|
914
|
+
- spec/models/fx_rate_view_spec.rb
|
915
|
+
- spec/models/page_client_business_card_vo_spec.rb
|
916
|
+
- spec/models/questionnaire_spec.rb
|
917
|
+
- spec/models/funding_request_map_spec.rb
|
918
|
+
- spec/models/page_portfolio_holding_log_spec.rb
|
919
|
+
- spec/models/budget_object_spec.rb
|
920
|
+
- spec/models/check_images_spec.rb
|
921
|
+
- spec/models/available_date_double_vo_spec.rb
|
922
|
+
- spec/models/goal_account_mapping_spec.rb
|
923
|
+
- spec/models/business_spec.rb
|
924
|
+
- spec/models/goal_track_accounts_spec.rb
|
925
|
+
- spec/models/page_order_bulk_spec.rb
|
926
|
+
- spec/models/decision_tree_spec.rb
|
927
|
+
- spec/models/acl_client_permission_vo_spec.rb
|
928
|
+
- spec/models/order_status_spec.rb
|
929
|
+
- spec/models/page_goal_track_spec.rb
|
930
|
+
- spec/models/aggregation_account_holding_spec.rb
|
931
|
+
- spec/models/client_card_vo_spec.rb
|
932
|
+
- spec/models/page_security_exclusion_spec.rb
|
933
|
+
- spec/models/merchant_category_code_spec.rb
|
934
|
+
- spec/models/goal_track_spec.rb
|
935
|
+
- spec/models/question_spec.rb
|
936
|
+
- spec/models/model_spec.rb
|
937
|
+
- spec/models/card_address_spec.rb
|
938
|
+
- spec/models/order_spec.rb
|
939
|
+
- spec/models/mx_merchant_res_spec.rb
|
940
|
+
- spec/models/page_notification_setting_spec.rb
|
941
|
+
- spec/models/permission_vo_spec.rb
|
942
|
+
- spec/models/page_model_asset_size_spec.rb
|
943
|
+
- spec/models/allocation_spec.rb
|
944
|
+
- spec/models/webhook_spec.rb
|
945
|
+
- spec/models/bank_credit_spec.rb
|
946
|
+
- spec/models/page_allocation_composition_spec.rb
|
947
|
+
- spec/models/page_overflow_spec.rb
|
948
|
+
- spec/models/client_account_mapping_spec.rb
|
949
|
+
- spec/models/page_admin_client_spec.rb
|
950
|
+
- spec/models/order_reconcile_return_object_spec.rb
|
951
|
+
- spec/models/page_security_spec.rb
|
952
|
+
- spec/models/page_institution_spec.rb
|
953
|
+
- spec/models/page_mx_merchant_res_spec.rb
|
954
|
+
- spec/models/goal_spec.rb
|
955
|
+
- spec/models/page_roundup_settings_spec.rb
|
956
|
+
- spec/models/page_model_spec.rb
|
957
|
+
- spec/models/client_business_card_vo_spec.rb
|
958
|
+
- spec/models/benchmark_spec.rb
|
959
|
+
- spec/models/page_decision_tree_spec.rb
|
960
|
+
- spec/models/fx_rate_spec.rb
|
961
|
+
- spec/models/page_bank_link_spec.rb
|
962
|
+
- spec/models/portfolio_holding_log_spec.rb
|
963
|
+
- spec/models/transaction_code_spec.rb
|
964
|
+
- spec/models/bulk_transaction_spec.rb
|
965
|
+
- spec/models/page_order_spec.rb
|
966
|
+
- spec/models/aggregation_account_transaction_spec.rb
|
967
|
+
- spec/models/client_address_spec.rb
|
968
|
+
- spec/models/page_funding_transaction_spec.rb
|
969
|
+
- spec/models/security_exclusion_spec.rb
|
970
|
+
- spec/models/page_goal_spec.rb
|
971
|
+
- spec/models/decision_tree_co_spec.rb
|
972
|
+
- spec/models/application_spec.rb
|
973
|
+
- spec/models/page_household_spec.rb
|
974
|
+
- spec/models/page_account_permission_vo_spec.rb
|
975
|
+
- spec/models/overflow_bank_link_map_spec.rb
|
976
|
+
- spec/models/risk_profile_spec.rb
|
977
|
+
- spec/models/node_spec.rb
|
978
|
+
- spec/models/investment_spec.rb
|
979
|
+
- spec/models/page_client_response_spec.rb
|
980
|
+
- spec/models/card_balance_vo_spec.rb
|
981
|
+
- spec/models/page_order_track_spec.rb
|
982
|
+
- spec/models/page_contact_spec.rb
|
983
|
+
- spec/models/country_spec.rb
|
984
|
+
- spec/models/page_aggregation_account_holding_spec.rb
|
985
|
+
- spec/models/page_business_spec.rb
|
986
|
+
- spec/models/feature_spec.rb
|
987
|
+
- spec/models/page_client_spec.rb
|
988
|
+
- spec/models/allocation_composition_aggregated_vo_spec.rb
|
989
|
+
- spec/models/currency_spec.rb
|
990
|
+
- spec/models/page_portfolio_spec.rb
|
991
|
+
- spec/models/page_funding_spec.rb
|
992
|
+
- spec/models/notification_setting_spec.rb
|
993
|
+
- spec/models/page_questionnaire_spec.rb
|
994
|
+
- spec/models/securities_country_spec.rb
|
995
|
+
- spec/models/institution_spec.rb
|
996
|
+
- spec/models/answer_map_spec.rb
|
997
|
+
- spec/models/page_transaction_code_spec.rb
|
998
|
+
- spec/models/securities_composition_spec.rb
|
999
|
+
- spec/models/budget_aggregation_account_spec.rb
|
1000
|
+
- spec/models/client_business_total_card_balance_vo_spec.rb
|
1001
|
+
- spec/models/page_allocation_spec.rb
|
1002
|
+
- spec/models/page_order_status_spec.rb
|
1003
|
+
- spec/models/invoice_payment_spec.rb
|
1004
|
+
- spec/models/security_country_vo_spec.rb
|
1005
|
+
- spec/models/page_audit_log_spec.rb
|
1006
|
+
- spec/models/page_security_price_spec.rb
|
1007
|
+
- spec/models/client_status_spec.rb
|
1008
|
+
- spec/models/line_items_spec.rb
|
1009
|
+
- spec/models/page_model_transaction_spec.rb
|
1010
|
+
- spec/models/page_score_spec.rb
|
1011
|
+
- spec/models/benchmark_composition_spec.rb
|
1012
|
+
- spec/models/v_client_goal_view_data_spec.rb
|
1013
|
+
- spec/models/model_asset_size_spec.rb
|
1014
|
+
- spec/models/overflow_spec.rb
|
1015
|
+
- spec/models/external_account_transfer_spec.rb
|
1016
|
+
- spec/models/stage_spec.rb
|
1017
|
+
- spec/models/ownership_spec.rb
|
1018
|
+
- spec/models/page_roundup_spec.rb
|
1019
|
+
- spec/models/date_double_vo_spec.rb
|
1020
|
+
- spec/models/page_answer_spec.rb
|
1021
|
+
- spec/models/roundup_co_spec.rb
|
1022
|
+
- spec/models/financial_statement_spec.rb
|
1023
|
+
- spec/models/page_budget_spec.rb
|
1024
|
+
- spec/models/bank_link_map_spec.rb
|
1025
|
+
- spec/models/state_spec.rb
|
1026
|
+
- spec/models/page_portfolio_goal_spec.rb
|
1027
|
+
- spec/models/page_client_status_spec.rb
|
1028
|
+
- spec/models/page_customer_revenue_spec.rb
|
1029
|
+
- spec/models/page_feature_spec.rb
|
1030
|
+
- spec/models/spending_control_spec.rb
|
1031
|
+
- spec/models/page_webhook_spec.rb
|
1032
|
+
- spec/models/account_allocation_mapping_spec.rb
|
1033
|
+
- spec/models/page_node_spec.rb
|
1034
|
+
- spec/models/page_stage_spec.rb
|
1035
|
+
- spec/models/order_vo_clone_spec.rb
|
1036
|
+
- spec/models/account_status_spec.rb
|
1037
|
+
- spec/models/model_comment_spec.rb
|
1038
|
+
- spec/models/cash_spec.rb
|
1039
|
+
- spec/models/client_spec.rb
|
1040
|
+
- spec/models/admin_client_spec.rb
|
1041
|
+
- spec/models/page_benchmark_spec.rb
|
1042
|
+
- spec/models/allocation_composition_spec.rb
|
1043
|
+
- spec/models/audit_log_spec.rb
|
1044
|
+
- spec/models/invoice_spec.rb
|
1045
|
+
- spec/models/portfolio_transaction_spec.rb
|
1046
|
+
- spec/models/brokers_spec.rb
|
1047
|
+
- spec/models/overflow_settings_spec.rb
|
1048
|
+
- spec/models/stat_spec.rb
|
1049
|
+
- spec/models/page_reason_code_spec.rb
|
1050
|
+
- spec/models/statistic_resource_vo_spec.rb
|
1051
|
+
- spec/models/card_spec.rb
|
1052
|
+
- spec/models/page_model_holding_spec.rb
|
1053
|
+
- spec/models/json_node_spec.rb
|
1054
|
+
- spec/models/security_spec.rb
|
1055
|
+
- spec/models/funding_transaction_spec.rb
|
1056
|
+
- spec/models/page_overflow_settings_spec.rb
|
1057
|
+
- spec/models/page_portfolio_comment_spec.rb
|
1058
|
+
- spec/models/household_spec.rb
|
1059
|
+
- spec/spec_helper.rb
|