hydrogen-nucleus-api 1.9.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (549) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +7 -0
  3. data/README.md +80 -0
  4. data/Rakefile +8 -0
  5. data/git_push.sh +55 -0
  6. data/lib/nucleus_api.rb +306 -0
  7. data/lib/nucleus_api/api/account_api.rb +1755 -0
  8. data/lib/nucleus_api/api/admin_client_api.rb +346 -0
  9. data/lib/nucleus_api/api/aggregation_account_api.rb +1642 -0
  10. data/lib/nucleus_api/api/allocation_api.rb +824 -0
  11. data/lib/nucleus_api/api/benchmark_api.rb +362 -0
  12. data/lib/nucleus_api/api/budget_api.rb +307 -0
  13. data/lib/nucleus_api/api/bulk_api.rb +253 -0
  14. data/lib/nucleus_api/api/business_api.rb +526 -0
  15. data/lib/nucleus_api/api/card_api.rb +864 -0
  16. data/lib/nucleus_api/api/client_api.rb +1246 -0
  17. data/lib/nucleus_api/api/contact_api.rb +585 -0
  18. data/lib/nucleus_api/api/decision_tree_api.rb +911 -0
  19. data/lib/nucleus_api/api/document_api.rb +301 -0
  20. data/lib/nucleus_api/api/financial_statement_api.rb +307 -0
  21. data/lib/nucleus_api/api/funding_api.rb +1213 -0
  22. data/lib/nucleus_api/api/goal_api.rb +837 -0
  23. data/lib/nucleus_api/api/household_api.rb +526 -0
  24. data/lib/nucleus_api/api/invoice_api.rb +591 -0
  25. data/lib/nucleus_api/api/model_api.rb +1479 -0
  26. data/lib/nucleus_api/api/order_api.rb +1688 -0
  27. data/lib/nucleus_api/api/overflow_api.rb +468 -0
  28. data/lib/nucleus_api/api/portfolio_api.rb +1840 -0
  29. data/lib/nucleus_api/api/questionnaire_api.rb +857 -0
  30. data/lib/nucleus_api/api/resource_api.rb +823 -0
  31. data/lib/nucleus_api/api/risk_profile_api.rb +301 -0
  32. data/lib/nucleus_api/api/roundup_api.rb +468 -0
  33. data/lib/nucleus_api/api/score_api.rb +301 -0
  34. data/lib/nucleus_api/api/securities_api.rb +863 -0
  35. data/lib/nucleus_api/api/spending_control_api.rb +301 -0
  36. data/lib/nucleus_api/api/utils_api.rb +2692 -0
  37. data/lib/nucleus_api/api/webhook_api.rb +301 -0
  38. data/lib/nucleus_api/api_client.rb +391 -0
  39. data/lib/nucleus_api/api_error.rb +38 -0
  40. data/lib/nucleus_api/auth_configuration.rb +181 -0
  41. data/lib/nucleus_api/configuration.rb +209 -0
  42. data/lib/nucleus_api/environment.rb +26 -0
  43. data/lib/nucleus_api/models/account.rb +335 -0
  44. data/lib/nucleus_api/models/account_allocation_mapping.rb +295 -0
  45. data/lib/nucleus_api/models/account_map.rb +203 -0
  46. data/lib/nucleus_api/models/account_permission_vo.rb +196 -0
  47. data/lib/nucleus_api/models/account_portfolio_rebalance_request.rb +314 -0
  48. data/lib/nucleus_api/models/account_status.rb +271 -0
  49. data/lib/nucleus_api/models/account_type.rb +336 -0
  50. data/lib/nucleus_api/models/acl_client_permission_vo.rb +237 -0
  51. data/lib/nucleus_api/models/admin_client.rb +290 -0
  52. data/lib/nucleus_api/models/aggregation_account.rb +541 -0
  53. data/lib/nucleus_api/models/aggregation_account_balance.rb +285 -0
  54. data/lib/nucleus_api/models/aggregation_account_holding.rb +357 -0
  55. data/lib/nucleus_api/models/aggregation_account_transaction.rb +336 -0
  56. data/lib/nucleus_api/models/aggregation_accounts_map.rb +203 -0
  57. data/lib/nucleus_api/models/allocation.rb +326 -0
  58. data/lib/nucleus_api/models/allocation_aggregated_vo.rb +229 -0
  59. data/lib/nucleus_api/models/allocation_composition.rb +305 -0
  60. data/lib/nucleus_api/models/allocation_composition_aggregated_vo.rb +283 -0
  61. data/lib/nucleus_api/models/allocation_composition_model_holdings_vo.rb +312 -0
  62. data/lib/nucleus_api/models/allocation_node_map.rb +188 -0
  63. data/lib/nucleus_api/models/answer.rb +314 -0
  64. data/lib/nucleus_api/models/answer_map.rb +182 -0
  65. data/lib/nucleus_api/models/application.rb +257 -0
  66. data/lib/nucleus_api/models/audit_log.rb +358 -0
  67. data/lib/nucleus_api/models/available_date_double_vo.rb +244 -0
  68. data/lib/nucleus_api/models/balances.rb +224 -0
  69. data/lib/nucleus_api/models/bank_credit.rb +283 -0
  70. data/lib/nucleus_api/models/bank_link.rb +431 -0
  71. data/lib/nucleus_api/models/bank_link_map.rb +203 -0
  72. data/lib/nucleus_api/models/benchmark.rb +278 -0
  73. data/lib/nucleus_api/models/benchmark_composition.rb +203 -0
  74. data/lib/nucleus_api/models/brokers.rb +204 -0
  75. data/lib/nucleus_api/models/budget.rb +383 -0
  76. data/lib/nucleus_api/models/budget_aggregation_account.rb +188 -0
  77. data/lib/nucleus_api/models/budget_object.rb +214 -0
  78. data/lib/nucleus_api/models/bulk_transaction.rb +227 -0
  79. data/lib/nucleus_api/models/bulk_transaction_vo.rb +218 -0
  80. data/lib/nucleus_api/models/business.rb +430 -0
  81. data/lib/nucleus_api/models/business_address.rb +279 -0
  82. data/lib/nucleus_api/models/business_details_vo.rb +236 -0
  83. data/lib/nucleus_api/models/card.rb +497 -0
  84. data/lib/nucleus_api/models/card_address.rb +269 -0
  85. data/lib/nucleus_api/models/card_balance_vo.rb +214 -0
  86. data/lib/nucleus_api/models/card_details_vo.rb +284 -0
  87. data/lib/nucleus_api/models/card_program.rb +351 -0
  88. data/lib/nucleus_api/models/cash.rb +214 -0
  89. data/lib/nucleus_api/models/categories_map.rb +203 -0
  90. data/lib/nucleus_api/models/check.rb +211 -0
  91. data/lib/nucleus_api/models/check_images.rb +199 -0
  92. data/lib/nucleus_api/models/client.rb +524 -0
  93. data/lib/nucleus_api/models/client_account_mapping.rb +213 -0
  94. data/lib/nucleus_api/models/client_address.rb +279 -0
  95. data/lib/nucleus_api/models/client_business_card_vo.rb +218 -0
  96. data/lib/nucleus_api/models/client_business_total_card_balance_vo.rb +204 -0
  97. data/lib/nucleus_api/models/client_card_vo.rb +244 -0
  98. data/lib/nucleus_api/models/client_credentials.rb +200 -0
  99. data/lib/nucleus_api/models/client_relationship.rb +210 -0
  100. data/lib/nucleus_api/models/client_response.rb +281 -0
  101. data/lib/nucleus_api/models/client_status.rb +271 -0
  102. data/lib/nucleus_api/models/client_view_goal_data.rb +303 -0
  103. data/lib/nucleus_api/models/contact.rb +356 -0
  104. data/lib/nucleus_api/models/contact_address.rb +269 -0
  105. data/lib/nucleus_api/models/country.rb +251 -0
  106. data/lib/nucleus_api/models/currency.rb +213 -0
  107. data/lib/nucleus_api/models/customer_revenue.rb +297 -0
  108. data/lib/nucleus_api/models/date_double_vo.rb +204 -0
  109. data/lib/nucleus_api/models/decision_tree.rb +276 -0
  110. data/lib/nucleus_api/models/decision_tree_co.rb +203 -0
  111. data/lib/nucleus_api/models/decision_tree_result_vo.rb +193 -0
  112. data/lib/nucleus_api/models/document.rb +407 -0
  113. data/lib/nucleus_api/models/employment.rb +214 -0
  114. data/lib/nucleus_api/models/external_account_transfer.rb +413 -0
  115. data/lib/nucleus_api/models/feature.rb +287 -0
  116. data/lib/nucleus_api/models/feature_track.rb +252 -0
  117. data/lib/nucleus_api/models/financial_statement.rb +363 -0
  118. data/lib/nucleus_api/models/funding.rb +509 -0
  119. data/lib/nucleus_api/models/funding_request_map.rb +188 -0
  120. data/lib/nucleus_api/models/funding_transaction.rb +391 -0
  121. data/lib/nucleus_api/models/fx_rate.rb +234 -0
  122. data/lib/nucleus_api/models/fx_rate_view.rb +234 -0
  123. data/lib/nucleus_api/models/goal.rb +341 -0
  124. data/lib/nucleus_api/models/goal_account_mapping.rb +219 -0
  125. data/lib/nucleus_api/models/goal_track.rb +373 -0
  126. data/lib/nucleus_api/models/goal_track_accounts.rb +188 -0
  127. data/lib/nucleus_api/models/household.rb +286 -0
  128. data/lib/nucleus_api/models/institution.rb +256 -0
  129. data/lib/nucleus_api/models/investment.rb +279 -0
  130. data/lib/nucleus_api/models/invoice.rb +473 -0
  131. data/lib/nucleus_api/models/invoice_payment.rb +282 -0
  132. data/lib/nucleus_api/models/json_node.rb +173 -0
  133. data/lib/nucleus_api/models/line_items.rb +279 -0
  134. data/lib/nucleus_api/models/location.rb +254 -0
  135. data/lib/nucleus_api/models/member.rb +218 -0
  136. data/lib/nucleus_api/models/merchant_category_code.rb +229 -0
  137. data/lib/nucleus_api/models/merchants_map.rb +203 -0
  138. data/lib/nucleus_api/models/model.rb +397 -0
  139. data/lib/nucleus_api/models/model_asset_size.rb +275 -0
  140. data/lib/nucleus_api/models/model_comment.rb +265 -0
  141. data/lib/nucleus_api/models/model_holding.rb +371 -0
  142. data/lib/nucleus_api/models/model_holding_vo.rb +209 -0
  143. data/lib/nucleus_api/models/model_transaction.rb +299 -0
  144. data/lib/nucleus_api/models/mx_merchant_res.rb +236 -0
  145. data/lib/nucleus_api/models/node.rb +261 -0
  146. data/lib/nucleus_api/models/node_relationship.rb +301 -0
  147. data/lib/nucleus_api/models/notification.rb +314 -0
  148. data/lib/nucleus_api/models/notification_client.rb +310 -0
  149. data/lib/nucleus_api/models/notification_setting.rb +301 -0
  150. data/lib/nucleus_api/models/order.rb +391 -0
  151. data/lib/nucleus_api/models/order_bulk.rb +310 -0
  152. data/lib/nucleus_api/models/order_reconcile_request.rb +221 -0
  153. data/lib/nucleus_api/models/order_reconcile_return_object.rb +228 -0
  154. data/lib/nucleus_api/models/order_status.rb +251 -0
  155. data/lib/nucleus_api/models/order_track.rb +317 -0
  156. data/lib/nucleus_api/models/order_vo_clone.rb +305 -0
  157. data/lib/nucleus_api/models/overflow.rb +282 -0
  158. data/lib/nucleus_api/models/overflow_bank_link_map.rb +213 -0
  159. data/lib/nucleus_api/models/overflow_settings.rb +288 -0
  160. data/lib/nucleus_api/models/overflow_vo.rb +204 -0
  161. data/lib/nucleus_api/models/ownership.rb +234 -0
  162. data/lib/nucleus_api/models/page_account.rb +259 -0
  163. data/lib/nucleus_api/models/page_account_allocation_mapping.rb +259 -0
  164. data/lib/nucleus_api/models/page_account_permission_vo.rb +259 -0
  165. data/lib/nucleus_api/models/page_account_status.rb +259 -0
  166. data/lib/nucleus_api/models/page_account_type.rb +259 -0
  167. data/lib/nucleus_api/models/page_admin_client.rb +259 -0
  168. data/lib/nucleus_api/models/page_aggregation_account.rb +259 -0
  169. data/lib/nucleus_api/models/page_aggregation_account_balance.rb +259 -0
  170. data/lib/nucleus_api/models/page_aggregation_account_holding.rb +259 -0
  171. data/lib/nucleus_api/models/page_aggregation_account_transaction.rb +259 -0
  172. data/lib/nucleus_api/models/page_allocation.rb +259 -0
  173. data/lib/nucleus_api/models/page_allocation_composition.rb +259 -0
  174. data/lib/nucleus_api/models/page_answer.rb +259 -0
  175. data/lib/nucleus_api/models/page_application.rb +259 -0
  176. data/lib/nucleus_api/models/page_audit_log.rb +259 -0
  177. data/lib/nucleus_api/models/page_bank_link.rb +259 -0
  178. data/lib/nucleus_api/models/page_benchmark.rb +259 -0
  179. data/lib/nucleus_api/models/page_budget.rb +259 -0
  180. data/lib/nucleus_api/models/page_business.rb +259 -0
  181. data/lib/nucleus_api/models/page_card.rb +259 -0
  182. data/lib/nucleus_api/models/page_card_program.rb +259 -0
  183. data/lib/nucleus_api/models/page_client.rb +259 -0
  184. data/lib/nucleus_api/models/page_client_business_card_vo.rb +259 -0
  185. data/lib/nucleus_api/models/page_client_response.rb +259 -0
  186. data/lib/nucleus_api/models/page_client_status.rb +259 -0
  187. data/lib/nucleus_api/models/page_contact.rb +259 -0
  188. data/lib/nucleus_api/models/page_customer_revenue.rb +259 -0
  189. data/lib/nucleus_api/models/page_decision_tree.rb +259 -0
  190. data/lib/nucleus_api/models/page_document.rb +259 -0
  191. data/lib/nucleus_api/models/page_external_account_transfer.rb +259 -0
  192. data/lib/nucleus_api/models/page_feature.rb +259 -0
  193. data/lib/nucleus_api/models/page_feature_track.rb +259 -0
  194. data/lib/nucleus_api/models/page_financial_statement.rb +259 -0
  195. data/lib/nucleus_api/models/page_funding.rb +259 -0
  196. data/lib/nucleus_api/models/page_funding_transaction.rb +259 -0
  197. data/lib/nucleus_api/models/page_goal.rb +259 -0
  198. data/lib/nucleus_api/models/page_goal_track.rb +259 -0
  199. data/lib/nucleus_api/models/page_household.rb +259 -0
  200. data/lib/nucleus_api/models/page_institution.rb +259 -0
  201. data/lib/nucleus_api/models/page_invoice.rb +259 -0
  202. data/lib/nucleus_api/models/page_invoice_payment.rb +259 -0
  203. data/lib/nucleus_api/models/page_model.rb +259 -0
  204. data/lib/nucleus_api/models/page_model_asset_size.rb +259 -0
  205. data/lib/nucleus_api/models/page_model_comment.rb +259 -0
  206. data/lib/nucleus_api/models/page_model_holding.rb +259 -0
  207. data/lib/nucleus_api/models/page_model_transaction.rb +259 -0
  208. data/lib/nucleus_api/models/page_mx_merchant_res.rb +274 -0
  209. data/lib/nucleus_api/models/page_node.rb +259 -0
  210. data/lib/nucleus_api/models/page_node_relationship.rb +259 -0
  211. data/lib/nucleus_api/models/page_notification.rb +259 -0
  212. data/lib/nucleus_api/models/page_notification_client.rb +259 -0
  213. data/lib/nucleus_api/models/page_notification_setting.rb +259 -0
  214. data/lib/nucleus_api/models/page_order.rb +259 -0
  215. data/lib/nucleus_api/models/page_order_bulk.rb +259 -0
  216. data/lib/nucleus_api/models/page_order_status.rb +259 -0
  217. data/lib/nucleus_api/models/page_order_track.rb +259 -0
  218. data/lib/nucleus_api/models/page_overflow.rb +259 -0
  219. data/lib/nucleus_api/models/page_overflow_settings.rb +259 -0
  220. data/lib/nucleus_api/models/page_portfolio.rb +259 -0
  221. data/lib/nucleus_api/models/page_portfolio_asset_size_log.rb +259 -0
  222. data/lib/nucleus_api/models/page_portfolio_comment.rb +259 -0
  223. data/lib/nucleus_api/models/page_portfolio_goal.rb +259 -0
  224. data/lib/nucleus_api/models/page_portfolio_holding_agg.rb +259 -0
  225. data/lib/nucleus_api/models/page_portfolio_holding_log.rb +259 -0
  226. data/lib/nucleus_api/models/page_portfolio_transaction.rb +259 -0
  227. data/lib/nucleus_api/models/page_question.rb +259 -0
  228. data/lib/nucleus_api/models/page_questionnaire.rb +259 -0
  229. data/lib/nucleus_api/models/page_reason_code.rb +259 -0
  230. data/lib/nucleus_api/models/page_risk_profile.rb +259 -0
  231. data/lib/nucleus_api/models/page_roundup.rb +259 -0
  232. data/lib/nucleus_api/models/page_roundup_settings.rb +259 -0
  233. data/lib/nucleus_api/models/page_score.rb +259 -0
  234. data/lib/nucleus_api/models/page_security.rb +259 -0
  235. data/lib/nucleus_api/models/page_security_exclusion.rb +259 -0
  236. data/lib/nucleus_api/models/page_security_price.rb +259 -0
  237. data/lib/nucleus_api/models/page_spending_control.rb +259 -0
  238. data/lib/nucleus_api/models/page_stage.rb +259 -0
  239. data/lib/nucleus_api/models/page_transaction_code.rb +259 -0
  240. data/lib/nucleus_api/models/page_webhook.rb +259 -0
  241. data/lib/nucleus_api/models/pageable.rb +227 -0
  242. data/lib/nucleus_api/models/permission_vo.rb +227 -0
  243. data/lib/nucleus_api/models/portfolio.rb +337 -0
  244. data/lib/nucleus_api/models/portfolio_asset_size_log.rb +330 -0
  245. data/lib/nucleus_api/models/portfolio_comment.rb +280 -0
  246. data/lib/nucleus_api/models/portfolio_goal.rb +256 -0
  247. data/lib/nucleus_api/models/portfolio_goal_map.rb +203 -0
  248. data/lib/nucleus_api/models/portfolio_holding_agg.rb +244 -0
  249. data/lib/nucleus_api/models/portfolio_holding_log.rb +340 -0
  250. data/lib/nucleus_api/models/portfolio_transaction.rb +536 -0
  251. data/lib/nucleus_api/models/question.rb +362 -0
  252. data/lib/nucleus_api/models/questionnaire.rb +288 -0
  253. data/lib/nucleus_api/models/reason_code.rb +275 -0
  254. data/lib/nucleus_api/models/risk_profile.rb +287 -0
  255. data/lib/nucleus_api/models/roundup.rb +267 -0
  256. data/lib/nucleus_api/models/roundup_co.rb +233 -0
  257. data/lib/nucleus_api/models/roundup_settings.rb +332 -0
  258. data/lib/nucleus_api/models/score.rb +375 -0
  259. data/lib/nucleus_api/models/securities_composition.rb +233 -0
  260. data/lib/nucleus_api/models/securities_country.rb +203 -0
  261. data/lib/nucleus_api/models/security.rb +435 -0
  262. data/lib/nucleus_api/models/security_composition_vo.rb +301 -0
  263. data/lib/nucleus_api/models/security_country_vo.rb +191 -0
  264. data/lib/nucleus_api/models/security_exclusion.rb +301 -0
  265. data/lib/nucleus_api/models/security_price.rb +314 -0
  266. data/lib/nucleus_api/models/sort.rb +234 -0
  267. data/lib/nucleus_api/models/spending_control.rb +343 -0
  268. data/lib/nucleus_api/models/stage.rb +346 -0
  269. data/lib/nucleus_api/models/stat.rb +204 -0
  270. data/lib/nucleus_api/models/state.rb +203 -0
  271. data/lib/nucleus_api/models/statistic_resource_vo.rb +209 -0
  272. data/lib/nucleus_api/models/token_date_request.rb +234 -0
  273. data/lib/nucleus_api/models/transaction_code.rb +313 -0
  274. data/lib/nucleus_api/models/v_account_vo.rb +227 -0
  275. data/lib/nucleus_api/models/v_client_goal_view_data.rb +229 -0
  276. data/lib/nucleus_api/models/v_portfolio_vo.rb +209 -0
  277. data/lib/nucleus_api/models/webhook.rb +278 -0
  278. data/lib/nucleus_api/version.rb +15 -0
  279. data/nucleus_api.gemspec +46 -0
  280. data/spec/api/account_api_spec.rb +445 -0
  281. data/spec/api/admin_client_api_spec.rb +107 -0
  282. data/spec/api/aggregation_account_api_spec.rb +412 -0
  283. data/spec/api/allocation_api_spec.rb +225 -0
  284. data/spec/api/benchmark_api_spec.rb +115 -0
  285. data/spec/api/budget_api_spec.rb +102 -0
  286. data/spec/api/bulk_api_spec.rb +86 -0
  287. data/spec/api/business_api_spec.rb +159 -0
  288. data/spec/api/card_api_spec.rb +239 -0
  289. data/spec/api/client_api_spec.rb +327 -0
  290. data/spec/api/contact_api_spec.rb +167 -0
  291. data/spec/api/decision_tree_api_spec.rb +242 -0
  292. data/spec/api/document_api_spec.rb +100 -0
  293. data/spec/api/financial_statement_api_spec.rb +102 -0
  294. data/spec/api/funding_api_spec.rb +315 -0
  295. data/spec/api/goal_api_spec.rb +231 -0
  296. data/spec/api/household_api_spec.rb +159 -0
  297. data/spec/api/invoice_api_spec.rb +169 -0
  298. data/spec/api/model_api_spec.rb +375 -0
  299. data/spec/api/order_api_spec.rb +412 -0
  300. data/spec/api/overflow_api_spec.rb +140 -0
  301. data/spec/api/portfolio_api_spec.rb +464 -0
  302. data/spec/api/questionnaire_api_spec.rb +230 -0
  303. data/spec/api/resource_api_spec.rb +229 -0
  304. data/spec/api/risk_profile_api_spec.rb +100 -0
  305. data/spec/api/roundup_api_spec.rb +140 -0
  306. data/spec/api/score_api_spec.rb +100 -0
  307. data/spec/api/securities_api_spec.rb +232 -0
  308. data/spec/api/spending_control_api_spec.rb +100 -0
  309. data/spec/api/utils_api_spec.rb +660 -0
  310. data/spec/api/webhook_api_spec.rb +100 -0
  311. data/spec/api_client_spec.rb +243 -0
  312. data/spec/configuration_spec.rb +42 -0
  313. data/spec/models/account_allocation_mapping_spec.rb +95 -0
  314. data/spec/models/account_map_spec.rb +47 -0
  315. data/spec/models/account_permission_vo_spec.rb +47 -0
  316. data/spec/models/account_portfolio_rebalance_request_spec.rb +119 -0
  317. data/spec/models/account_spec.rb +125 -0
  318. data/spec/models/account_status_spec.rb +89 -0
  319. data/spec/models/account_type_spec.rb +131 -0
  320. data/spec/models/acl_client_permission_vo_spec.rb +57 -0
  321. data/spec/models/admin_client_spec.rb +113 -0
  322. data/spec/models/aggregation_account_balance_spec.rb +101 -0
  323. data/spec/models/aggregation_account_holding_spec.rb +149 -0
  324. data/spec/models/aggregation_account_spec.rb +251 -0
  325. data/spec/models/aggregation_account_transaction_spec.rb +131 -0
  326. data/spec/models/aggregation_accounts_map_spec.rb +47 -0
  327. data/spec/models/allocation_aggregated_vo_spec.rb +71 -0
  328. data/spec/models/allocation_composition_aggregated_vo_spec.rb +107 -0
  329. data/spec/models/allocation_composition_model_holdings_vo_spec.rb +125 -0
  330. data/spec/models/allocation_composition_spec.rb +101 -0
  331. data/spec/models/allocation_node_map_spec.rb +41 -0
  332. data/spec/models/allocation_spec.rb +125 -0
  333. data/spec/models/answer_map_spec.rb +41 -0
  334. data/spec/models/answer_spec.rb +119 -0
  335. data/spec/models/application_spec.rb +83 -0
  336. data/spec/models/audit_log_spec.rb +131 -0
  337. data/spec/models/available_date_double_vo_spec.rb +77 -0
  338. data/spec/models/balances_spec.rb +65 -0
  339. data/spec/models/bank_credit_spec.rb +95 -0
  340. data/spec/models/bank_link_map_spec.rb +47 -0
  341. data/spec/models/bank_link_spec.rb +179 -0
  342. data/spec/models/benchmark_composition_spec.rb +47 -0
  343. data/spec/models/benchmark_spec.rb +95 -0
  344. data/spec/models/brokers_spec.rb +47 -0
  345. data/spec/models/budget_aggregation_account_spec.rb +41 -0
  346. data/spec/models/budget_object_spec.rb +53 -0
  347. data/spec/models/budget_spec.rb +149 -0
  348. data/spec/models/bulk_transaction_spec.rb +71 -0
  349. data/spec/models/bulk_transaction_vo_spec.rb +65 -0
  350. data/spec/models/business_address_spec.rb +83 -0
  351. data/spec/models/business_details_vo_spec.rb +71 -0
  352. data/spec/models/business_spec.rb +185 -0
  353. data/spec/models/card_address_spec.rb +77 -0
  354. data/spec/models/card_balance_vo_spec.rb +59 -0
  355. data/spec/models/card_details_vo_spec.rb +101 -0
  356. data/spec/models/card_program_spec.rb +131 -0
  357. data/spec/models/card_spec.rb +215 -0
  358. data/spec/models/cash_spec.rb +53 -0
  359. data/spec/models/categories_map_spec.rb +47 -0
  360. data/spec/models/check_images_spec.rb +47 -0
  361. data/spec/models/check_spec.rb +53 -0
  362. data/spec/models/client_account_mapping_spec.rb +53 -0
  363. data/spec/models/client_address_spec.rb +83 -0
  364. data/spec/models/client_business_card_vo_spec.rb +59 -0
  365. data/spec/models/client_business_total_card_balance_vo_spec.rb +53 -0
  366. data/spec/models/client_card_vo_spec.rb +77 -0
  367. data/spec/models/client_credentials_spec.rb +53 -0
  368. data/spec/models/client_relationship_spec.rb +53 -0
  369. data/spec/models/client_response_spec.rb +95 -0
  370. data/spec/models/client_spec.rb +239 -0
  371. data/spec/models/client_status_spec.rb +89 -0
  372. data/spec/models/client_view_goal_data_spec.rb +119 -0
  373. data/spec/models/contact_address_spec.rb +77 -0
  374. data/spec/models/contact_spec.rb +143 -0
  375. data/spec/models/country_spec.rb +71 -0
  376. data/spec/models/currency_spec.rb +59 -0
  377. data/spec/models/customer_revenue_spec.rb +95 -0
  378. data/spec/models/date_double_vo_spec.rb +53 -0
  379. data/spec/models/decision_tree_co_spec.rb +47 -0
  380. data/spec/models/decision_tree_result_vo_spec.rb +47 -0
  381. data/spec/models/decision_tree_spec.rb +95 -0
  382. data/spec/models/document_spec.rb +173 -0
  383. data/spec/models/employment_spec.rb +59 -0
  384. data/spec/models/external_account_transfer_spec.rb +161 -0
  385. data/spec/models/feature_spec.rb +101 -0
  386. data/spec/models/feature_track_spec.rb +77 -0
  387. data/spec/models/financial_statement_spec.rb +137 -0
  388. data/spec/models/funding_request_map_spec.rb +41 -0
  389. data/spec/models/funding_spec.rb +221 -0
  390. data/spec/models/funding_transaction_spec.rb +155 -0
  391. data/spec/models/fx_rate_spec.rb +59 -0
  392. data/spec/models/fx_rate_view_spec.rb +59 -0
  393. data/spec/models/goal_account_mapping_spec.rb +59 -0
  394. data/spec/models/goal_spec.rb +137 -0
  395. data/spec/models/goal_track_accounts_spec.rb +41 -0
  396. data/spec/models/goal_track_spec.rb +149 -0
  397. data/spec/models/household_spec.rb +101 -0
  398. data/spec/models/institution_spec.rb +83 -0
  399. data/spec/models/investment_spec.rb +89 -0
  400. data/spec/models/invoice_payment_spec.rb +89 -0
  401. data/spec/models/invoice_spec.rb +197 -0
  402. data/spec/models/json_node_spec.rb +35 -0
  403. data/spec/models/line_items_spec.rb +83 -0
  404. data/spec/models/location_spec.rb +83 -0
  405. data/spec/models/member_spec.rb +59 -0
  406. data/spec/models/merchant_category_code_spec.rb +65 -0
  407. data/spec/models/merchants_map_spec.rb +47 -0
  408. data/spec/models/model_asset_size_spec.rb +89 -0
  409. data/spec/models/model_comment_spec.rb +83 -0
  410. data/spec/models/model_holding_spec.rb +143 -0
  411. data/spec/models/model_holding_vo_spec.rb +59 -0
  412. data/spec/models/model_spec.rb +167 -0
  413. data/spec/models/model_transaction_spec.rb +95 -0
  414. data/spec/models/mx_merchant_res_spec.rb +77 -0
  415. data/spec/models/node_relationship_spec.rb +101 -0
  416. data/spec/models/node_spec.rb +83 -0
  417. data/spec/models/notification_client_spec.rb +107 -0
  418. data/spec/models/notification_setting_spec.rb +107 -0
  419. data/spec/models/notification_spec.rb +113 -0
  420. data/spec/models/order_bulk_spec.rb +101 -0
  421. data/spec/models/order_reconcile_request_spec.rb +65 -0
  422. data/spec/models/order_reconcile_return_object_spec.rb +65 -0
  423. data/spec/models/order_spec.rb +155 -0
  424. data/spec/models/order_status_spec.rb +77 -0
  425. data/spec/models/order_track_spec.rb +113 -0
  426. data/spec/models/order_vo_clone_spec.rb +113 -0
  427. data/spec/models/overflow_bank_link_map_spec.rb +53 -0
  428. data/spec/models/overflow_settings_spec.rb +95 -0
  429. data/spec/models/overflow_spec.rb +89 -0
  430. data/spec/models/overflow_vo_spec.rb +53 -0
  431. data/spec/models/ownership_spec.rb +65 -0
  432. data/spec/models/page_account_allocation_mapping_spec.rb +89 -0
  433. data/spec/models/page_account_permission_vo_spec.rb +89 -0
  434. data/spec/models/page_account_spec.rb +89 -0
  435. data/spec/models/page_account_status_spec.rb +89 -0
  436. data/spec/models/page_account_type_spec.rb +89 -0
  437. data/spec/models/page_admin_client_spec.rb +89 -0
  438. data/spec/models/page_aggregation_account_balance_spec.rb +89 -0
  439. data/spec/models/page_aggregation_account_holding_spec.rb +89 -0
  440. data/spec/models/page_aggregation_account_spec.rb +89 -0
  441. data/spec/models/page_aggregation_account_transaction_spec.rb +89 -0
  442. data/spec/models/page_allocation_composition_spec.rb +89 -0
  443. data/spec/models/page_allocation_spec.rb +89 -0
  444. data/spec/models/page_answer_spec.rb +89 -0
  445. data/spec/models/page_application_spec.rb +89 -0
  446. data/spec/models/page_audit_log_spec.rb +89 -0
  447. data/spec/models/page_bank_link_spec.rb +89 -0
  448. data/spec/models/page_benchmark_spec.rb +89 -0
  449. data/spec/models/page_budget_spec.rb +89 -0
  450. data/spec/models/page_business_spec.rb +89 -0
  451. data/spec/models/page_card_program_spec.rb +89 -0
  452. data/spec/models/page_card_spec.rb +89 -0
  453. data/spec/models/page_client_business_card_vo_spec.rb +89 -0
  454. data/spec/models/page_client_response_spec.rb +89 -0
  455. data/spec/models/page_client_spec.rb +89 -0
  456. data/spec/models/page_client_status_spec.rb +89 -0
  457. data/spec/models/page_contact_spec.rb +89 -0
  458. data/spec/models/page_customer_revenue_spec.rb +89 -0
  459. data/spec/models/page_decision_tree_spec.rb +89 -0
  460. data/spec/models/page_document_spec.rb +89 -0
  461. data/spec/models/page_external_account_transfer_spec.rb +89 -0
  462. data/spec/models/page_feature_spec.rb +89 -0
  463. data/spec/models/page_feature_track_spec.rb +89 -0
  464. data/spec/models/page_financial_statement_spec.rb +89 -0
  465. data/spec/models/page_funding_spec.rb +89 -0
  466. data/spec/models/page_funding_transaction_spec.rb +89 -0
  467. data/spec/models/page_goal_spec.rb +89 -0
  468. data/spec/models/page_goal_track_spec.rb +89 -0
  469. data/spec/models/page_household_spec.rb +89 -0
  470. data/spec/models/page_institution_spec.rb +89 -0
  471. data/spec/models/page_invoice_payment_spec.rb +89 -0
  472. data/spec/models/page_invoice_spec.rb +89 -0
  473. data/spec/models/page_model_asset_size_spec.rb +89 -0
  474. data/spec/models/page_model_comment_spec.rb +89 -0
  475. data/spec/models/page_model_holding_spec.rb +89 -0
  476. data/spec/models/page_model_spec.rb +89 -0
  477. data/spec/models/page_model_transaction_spec.rb +89 -0
  478. data/spec/models/page_mx_merchant_res_spec.rb +101 -0
  479. data/spec/models/page_node_relationship_spec.rb +89 -0
  480. data/spec/models/page_node_spec.rb +89 -0
  481. data/spec/models/page_notification_client_spec.rb +89 -0
  482. data/spec/models/page_notification_setting_spec.rb +89 -0
  483. data/spec/models/page_notification_spec.rb +89 -0
  484. data/spec/models/page_order_bulk_spec.rb +89 -0
  485. data/spec/models/page_order_spec.rb +89 -0
  486. data/spec/models/page_order_status_spec.rb +89 -0
  487. data/spec/models/page_order_track_spec.rb +89 -0
  488. data/spec/models/page_overflow_settings_spec.rb +89 -0
  489. data/spec/models/page_overflow_spec.rb +89 -0
  490. data/spec/models/page_portfolio_asset_size_log_spec.rb +89 -0
  491. data/spec/models/page_portfolio_comment_spec.rb +89 -0
  492. data/spec/models/page_portfolio_goal_spec.rb +89 -0
  493. data/spec/models/page_portfolio_holding_agg_spec.rb +89 -0
  494. data/spec/models/page_portfolio_holding_log_spec.rb +89 -0
  495. data/spec/models/page_portfolio_spec.rb +89 -0
  496. data/spec/models/page_portfolio_transaction_spec.rb +89 -0
  497. data/spec/models/page_question_spec.rb +89 -0
  498. data/spec/models/page_questionnaire_spec.rb +89 -0
  499. data/spec/models/page_reason_code_spec.rb +89 -0
  500. data/spec/models/page_risk_profile_spec.rb +89 -0
  501. data/spec/models/page_roundup_settings_spec.rb +89 -0
  502. data/spec/models/page_roundup_spec.rb +89 -0
  503. data/spec/models/page_score_spec.rb +89 -0
  504. data/spec/models/page_security_exclusion_spec.rb +89 -0
  505. data/spec/models/page_security_price_spec.rb +89 -0
  506. data/spec/models/page_security_spec.rb +89 -0
  507. data/spec/models/page_spending_control_spec.rb +89 -0
  508. data/spec/models/page_stage_spec.rb +89 -0
  509. data/spec/models/page_transaction_code_spec.rb +89 -0
  510. data/spec/models/page_webhook_spec.rb +89 -0
  511. data/spec/models/pageable_spec.rb +71 -0
  512. data/spec/models/permission_vo_spec.rb +51 -0
  513. data/spec/models/portfolio_asset_size_log_spec.rb +113 -0
  514. data/spec/models/portfolio_comment_spec.rb +89 -0
  515. data/spec/models/portfolio_goal_map_spec.rb +47 -0
  516. data/spec/models/portfolio_goal_spec.rb +77 -0
  517. data/spec/models/portfolio_holding_agg_spec.rb +77 -0
  518. data/spec/models/portfolio_holding_log_spec.rb +119 -0
  519. data/spec/models/portfolio_spec.rb +125 -0
  520. data/spec/models/portfolio_transaction_spec.rb +239 -0
  521. data/spec/models/question_spec.rb +149 -0
  522. data/spec/models/questionnaire_spec.rb +101 -0
  523. data/spec/models/reason_code_spec.rb +95 -0
  524. data/spec/models/risk_profile_spec.rb +101 -0
  525. data/spec/models/roundup_co_spec.rb +65 -0
  526. data/spec/models/roundup_settings_spec.rb +119 -0
  527. data/spec/models/roundup_spec.rb +83 -0
  528. data/spec/models/score_spec.rb +135 -0
  529. data/spec/models/securities_composition_spec.rb +59 -0
  530. data/spec/models/securities_country_spec.rb +47 -0
  531. data/spec/models/security_composition_vo_spec.rb +119 -0
  532. data/spec/models/security_country_vo_spec.rb +47 -0
  533. data/spec/models/security_exclusion_spec.rb +101 -0
  534. data/spec/models/security_price_spec.rb +113 -0
  535. data/spec/models/security_spec.rb +185 -0
  536. data/spec/models/sort_spec.rb +71 -0
  537. data/spec/models/spending_control_spec.rb +125 -0
  538. data/spec/models/stage_spec.rb +137 -0
  539. data/spec/models/stat_spec.rb +47 -0
  540. data/spec/models/state_spec.rb +53 -0
  541. data/spec/models/statistic_resource_vo_spec.rb +59 -0
  542. data/spec/models/token_date_request_spec.rb +71 -0
  543. data/spec/models/transaction_code_spec.rb +119 -0
  544. data/spec/models/v_account_vo_spec.rb +71 -0
  545. data/spec/models/v_client_goal_view_data_spec.rb +71 -0
  546. data/spec/models/v_portfolio_vo_spec.rb +59 -0
  547. data/spec/models/webhook_spec.rb +87 -0
  548. data/spec/spec_helper.rb +111 -0
  549. metadata +1059 -0
@@ -0,0 +1,911 @@
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.20
10
+
11
+ =end
12
+
13
+ require 'uri'
14
+
15
+ module NucleusApi
16
+ class DecisionTreeApi
17
+ attr_accessor :api_client
18
+
19
+ def initialize(api_client = ApiClient.default)
20
+ @api_client = api_client
21
+ end
22
+ # Decision tree result
23
+ # Decision tree result.
24
+ # @param decision_tree_co decisionTreeCO
25
+ # @param [Hash] opts the optional parameters
26
+ # @return [DecisionTreeResultVO]
27
+ def create_decision_tree_result_using_post(decision_tree_co, opts = {})
28
+ data, _status_code, _headers = create_decision_tree_result_using_post_with_http_info(decision_tree_co, opts)
29
+ data
30
+ end
31
+
32
+ # Decision tree result
33
+ # Decision tree result.
34
+ # @param decision_tree_co decisionTreeCO
35
+ # @param [Hash] opts the optional parameters
36
+ # @return [Array<(DecisionTreeResultVO, Fixnum, Hash)>] DecisionTreeResultVO data, response status code and response headers
37
+ def create_decision_tree_result_using_post_with_http_info(decision_tree_co, opts = {})
38
+ if @api_client.config.debugging
39
+ @api_client.config.logger.debug 'Calling API: DecisionTreeApi.create_decision_tree_result_using_post ...'
40
+ end
41
+ # verify the required parameter 'decision_tree_co' is set
42
+ if @api_client.config.client_side_validation && decision_tree_co.nil?
43
+ fail ArgumentError, "Missing the required parameter 'decision_tree_co' when calling DecisionTreeApi.create_decision_tree_result_using_post"
44
+ end
45
+ # resource path
46
+ local_var_path = '/nucleus/v1/decision_tree_result'
47
+
48
+ # query parameters
49
+ query_params = {}
50
+
51
+ # header parameters
52
+ header_params = {}
53
+ # HTTP header 'Accept' (if needed)
54
+ header_params['Accept'] = @api_client.select_header_accept(['*/*'])
55
+ # HTTP header 'Content-Type'
56
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
57
+
58
+ # form parameters
59
+ form_params = {}
60
+
61
+ # http body (model)
62
+ post_body = @api_client.object_to_http_body(decision_tree_co)
63
+ auth_names = ['oauth2']
64
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path,
65
+ :header_params => header_params,
66
+ :query_params => query_params,
67
+ :form_params => form_params,
68
+ :body => post_body,
69
+ :auth_names => auth_names,
70
+ :return_type => 'DecisionTreeResultVO')
71
+ if @api_client.config.debugging
72
+ @api_client.config.logger.debug "API called: DecisionTreeApi#create_decision_tree_result_using_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
73
+ end
74
+ return data, status_code, headers
75
+ end
76
+ # Create a decision tree
77
+ # Create a new decision tree for your firm.
78
+ # @param decision_tree decisionTree
79
+ # @param [Hash] opts the optional parameters
80
+ # @return [DecisionTree]
81
+ def create_decision_tree_using_post(decision_tree, opts = {})
82
+ data, _status_code, _headers = create_decision_tree_using_post_with_http_info(decision_tree, opts)
83
+ data
84
+ end
85
+
86
+ # Create a decision tree
87
+ # Create a new decision tree for your firm.
88
+ # @param decision_tree decisionTree
89
+ # @param [Hash] opts the optional parameters
90
+ # @return [Array<(DecisionTree, Fixnum, Hash)>] DecisionTree data, response status code and response headers
91
+ def create_decision_tree_using_post_with_http_info(decision_tree, opts = {})
92
+ if @api_client.config.debugging
93
+ @api_client.config.logger.debug 'Calling API: DecisionTreeApi.create_decision_tree_using_post ...'
94
+ end
95
+ # verify the required parameter 'decision_tree' is set
96
+ if @api_client.config.client_side_validation && decision_tree.nil?
97
+ fail ArgumentError, "Missing the required parameter 'decision_tree' when calling DecisionTreeApi.create_decision_tree_using_post"
98
+ end
99
+ # resource path
100
+ local_var_path = '/nucleus/v1/decision_tree'
101
+
102
+ # query parameters
103
+ query_params = {}
104
+
105
+ # header parameters
106
+ header_params = {}
107
+ # HTTP header 'Accept' (if needed)
108
+ header_params['Accept'] = @api_client.select_header_accept(['*/*'])
109
+ # HTTP header 'Content-Type'
110
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
111
+
112
+ # form parameters
113
+ form_params = {}
114
+
115
+ # http body (model)
116
+ post_body = @api_client.object_to_http_body(decision_tree)
117
+ auth_names = ['oauth2']
118
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path,
119
+ :header_params => header_params,
120
+ :query_params => query_params,
121
+ :form_params => form_params,
122
+ :body => post_body,
123
+ :auth_names => auth_names,
124
+ :return_type => 'DecisionTree')
125
+ if @api_client.config.debugging
126
+ @api_client.config.logger.debug "API called: DecisionTreeApi#create_decision_tree_using_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
127
+ end
128
+ return data, status_code, headers
129
+ end
130
+ # Create a node relationship
131
+ # Create a new node relationship for your firm.
132
+ # @param node node
133
+ # @param [Hash] opts the optional parameters
134
+ # @return [NodeRelationship]
135
+ def create_node_relationship_using_post(node, opts = {})
136
+ data, _status_code, _headers = create_node_relationship_using_post_with_http_info(node, opts)
137
+ data
138
+ end
139
+
140
+ # Create a node relationship
141
+ # Create a new node relationship for your firm.
142
+ # @param node node
143
+ # @param [Hash] opts the optional parameters
144
+ # @return [Array<(NodeRelationship, Fixnum, Hash)>] NodeRelationship data, response status code and response headers
145
+ def create_node_relationship_using_post_with_http_info(node, opts = {})
146
+ if @api_client.config.debugging
147
+ @api_client.config.logger.debug 'Calling API: DecisionTreeApi.create_node_relationship_using_post ...'
148
+ end
149
+ # verify the required parameter 'node' is set
150
+ if @api_client.config.client_side_validation && node.nil?
151
+ fail ArgumentError, "Missing the required parameter 'node' when calling DecisionTreeApi.create_node_relationship_using_post"
152
+ end
153
+ # resource path
154
+ local_var_path = '/nucleus/v1/node_relationship'
155
+
156
+ # query parameters
157
+ query_params = {}
158
+
159
+ # header parameters
160
+ header_params = {}
161
+ # HTTP header 'Accept' (if needed)
162
+ header_params['Accept'] = @api_client.select_header_accept(['*/*'])
163
+ # HTTP header 'Content-Type'
164
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
165
+
166
+ # form parameters
167
+ form_params = {}
168
+
169
+ # http body (model)
170
+ post_body = @api_client.object_to_http_body(node)
171
+ auth_names = ['oauth2']
172
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path,
173
+ :header_params => header_params,
174
+ :query_params => query_params,
175
+ :form_params => form_params,
176
+ :body => post_body,
177
+ :auth_names => auth_names,
178
+ :return_type => 'NodeRelationship')
179
+ if @api_client.config.debugging
180
+ @api_client.config.logger.debug "API called: DecisionTreeApi#create_node_relationship_using_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
181
+ end
182
+ return data, status_code, headers
183
+ end
184
+ # Create a node
185
+ # Create a new node for your firm that can be used in a decision tree and mapped to other nodes.
186
+ # @param node node
187
+ # @param [Hash] opts the optional parameters
188
+ # @return [Node]
189
+ def create_node_using_post(node, opts = {})
190
+ data, _status_code, _headers = create_node_using_post_with_http_info(node, opts)
191
+ data
192
+ end
193
+
194
+ # Create a node
195
+ # Create a new node for your firm that can be used in a decision tree and mapped to other nodes.
196
+ # @param node node
197
+ # @param [Hash] opts the optional parameters
198
+ # @return [Array<(Node, Fixnum, Hash)>] Node data, response status code and response headers
199
+ def create_node_using_post_with_http_info(node, opts = {})
200
+ if @api_client.config.debugging
201
+ @api_client.config.logger.debug 'Calling API: DecisionTreeApi.create_node_using_post ...'
202
+ end
203
+ # verify the required parameter 'node' is set
204
+ if @api_client.config.client_side_validation && node.nil?
205
+ fail ArgumentError, "Missing the required parameter 'node' when calling DecisionTreeApi.create_node_using_post"
206
+ end
207
+ # resource path
208
+ local_var_path = '/nucleus/v1/node'
209
+
210
+ # query parameters
211
+ query_params = {}
212
+
213
+ # header parameters
214
+ header_params = {}
215
+ # HTTP header 'Accept' (if needed)
216
+ header_params['Accept'] = @api_client.select_header_accept(['*/*'])
217
+ # HTTP header 'Content-Type'
218
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
219
+
220
+ # form parameters
221
+ form_params = {}
222
+
223
+ # http body (model)
224
+ post_body = @api_client.object_to_http_body(node)
225
+ auth_names = ['oauth2']
226
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path,
227
+ :header_params => header_params,
228
+ :query_params => query_params,
229
+ :form_params => form_params,
230
+ :body => post_body,
231
+ :auth_names => auth_names,
232
+ :return_type => 'Node')
233
+ if @api_client.config.debugging
234
+ @api_client.config.logger.debug "API called: DecisionTreeApi#create_node_using_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
235
+ end
236
+ return data, status_code, headers
237
+ end
238
+ # Delete a decision tree
239
+ # Permanently delete a decision tree.
240
+ # @param decision_tree_id UUID decision_tree_id
241
+ # @param [Hash] opts the optional parameters
242
+ # @return [nil]
243
+ def delete_decision_tree_using_delete(decision_tree_id, opts = {})
244
+ delete_decision_tree_using_delete_with_http_info(decision_tree_id, opts)
245
+ nil
246
+ end
247
+
248
+ # Delete a decision tree
249
+ # Permanently delete a decision tree.
250
+ # @param decision_tree_id UUID decision_tree_id
251
+ # @param [Hash] opts the optional parameters
252
+ # @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
253
+ def delete_decision_tree_using_delete_with_http_info(decision_tree_id, opts = {})
254
+ if @api_client.config.debugging
255
+ @api_client.config.logger.debug 'Calling API: DecisionTreeApi.delete_decision_tree_using_delete ...'
256
+ end
257
+ # verify the required parameter 'decision_tree_id' is set
258
+ if @api_client.config.client_side_validation && decision_tree_id.nil?
259
+ fail ArgumentError, "Missing the required parameter 'decision_tree_id' when calling DecisionTreeApi.delete_decision_tree_using_delete"
260
+ end
261
+ # resource path
262
+ local_var_path = '/nucleus/v1/decision_tree/{decision_tree_id}'.sub('{' + 'decision_tree_id' + '}', decision_tree_id.to_s)
263
+
264
+ # query parameters
265
+ query_params = {}
266
+
267
+ # header parameters
268
+ header_params = {}
269
+ # HTTP header 'Accept' (if needed)
270
+ header_params['Accept'] = @api_client.select_header_accept(['*/*'])
271
+
272
+ # form parameters
273
+ form_params = {}
274
+
275
+ # http body (model)
276
+ post_body = nil
277
+ auth_names = ['oauth2']
278
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
279
+ :header_params => header_params,
280
+ :query_params => query_params,
281
+ :form_params => form_params,
282
+ :body => post_body,
283
+ :auth_names => auth_names)
284
+ if @api_client.config.debugging
285
+ @api_client.config.logger.debug "API called: DecisionTreeApi#delete_decision_tree_using_delete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
286
+ end
287
+ return data, status_code, headers
288
+ end
289
+ # Delete a node relationship
290
+ # Permanently delete a node relationship.
291
+ # @param node_relationship_id UUID node_relationship_id
292
+ # @param [Hash] opts the optional parameters
293
+ # @return [nil]
294
+ def delete_node_relationship_using_delete(node_relationship_id, opts = {})
295
+ delete_node_relationship_using_delete_with_http_info(node_relationship_id, opts)
296
+ nil
297
+ end
298
+
299
+ # Delete a node relationship
300
+ # Permanently delete a node relationship.
301
+ # @param node_relationship_id UUID node_relationship_id
302
+ # @param [Hash] opts the optional parameters
303
+ # @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
304
+ def delete_node_relationship_using_delete_with_http_info(node_relationship_id, opts = {})
305
+ if @api_client.config.debugging
306
+ @api_client.config.logger.debug 'Calling API: DecisionTreeApi.delete_node_relationship_using_delete ...'
307
+ end
308
+ # verify the required parameter 'node_relationship_id' is set
309
+ if @api_client.config.client_side_validation && node_relationship_id.nil?
310
+ fail ArgumentError, "Missing the required parameter 'node_relationship_id' when calling DecisionTreeApi.delete_node_relationship_using_delete"
311
+ end
312
+ # resource path
313
+ local_var_path = '/nucleus/v1/node_relationship/{node_relationship_id}'.sub('{' + 'node_relationship_id' + '}', node_relationship_id.to_s)
314
+
315
+ # query parameters
316
+ query_params = {}
317
+
318
+ # header parameters
319
+ header_params = {}
320
+ # HTTP header 'Accept' (if needed)
321
+ header_params['Accept'] = @api_client.select_header_accept(['*/*'])
322
+
323
+ # form parameters
324
+ form_params = {}
325
+
326
+ # http body (model)
327
+ post_body = nil
328
+ auth_names = ['oauth2']
329
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
330
+ :header_params => header_params,
331
+ :query_params => query_params,
332
+ :form_params => form_params,
333
+ :body => post_body,
334
+ :auth_names => auth_names)
335
+ if @api_client.config.debugging
336
+ @api_client.config.logger.debug "API called: DecisionTreeApi#delete_node_relationship_using_delete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
337
+ end
338
+ return data, status_code, headers
339
+ end
340
+ # Delete a node
341
+ # Permanently delete a node.
342
+ # @param node_id UUID node_id
343
+ # @param [Hash] opts the optional parameters
344
+ # @return [nil]
345
+ def delete_node_using_delete(node_id, opts = {})
346
+ delete_node_using_delete_with_http_info(node_id, opts)
347
+ nil
348
+ end
349
+
350
+ # Delete a node
351
+ # Permanently delete a node.
352
+ # @param node_id UUID node_id
353
+ # @param [Hash] opts the optional parameters
354
+ # @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
355
+ def delete_node_using_delete_with_http_info(node_id, opts = {})
356
+ if @api_client.config.debugging
357
+ @api_client.config.logger.debug 'Calling API: DecisionTreeApi.delete_node_using_delete ...'
358
+ end
359
+ # verify the required parameter 'node_id' is set
360
+ if @api_client.config.client_side_validation && node_id.nil?
361
+ fail ArgumentError, "Missing the required parameter 'node_id' when calling DecisionTreeApi.delete_node_using_delete"
362
+ end
363
+ # resource path
364
+ local_var_path = '/nucleus/v1/node/{node_id}'.sub('{' + 'node_id' + '}', node_id.to_s)
365
+
366
+ # query parameters
367
+ query_params = {}
368
+
369
+ # header parameters
370
+ header_params = {}
371
+ # HTTP header 'Accept' (if needed)
372
+ header_params['Accept'] = @api_client.select_header_accept(['*/*'])
373
+
374
+ # form parameters
375
+ form_params = {}
376
+
377
+ # http body (model)
378
+ post_body = nil
379
+ auth_names = ['oauth2']
380
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
381
+ :header_params => header_params,
382
+ :query_params => query_params,
383
+ :form_params => form_params,
384
+ :body => post_body,
385
+ :auth_names => auth_names)
386
+ if @api_client.config.debugging
387
+ @api_client.config.logger.debug "API called: DecisionTreeApi#delete_node_using_delete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
388
+ end
389
+ return data, status_code, headers
390
+ end
391
+ # List all decision tree
392
+ # Get the information for all decision trees defined for your firm.
393
+ # @param [Hash] opts the optional parameters
394
+ # @option opts [BOOLEAN] :ascending ascending (default to false)
395
+ # @option opts [String] :filter filter
396
+ # @option opts [String] :order_by order_by (default to update_date)
397
+ # @option opts [Integer] :page page (default to 0)
398
+ # @option opts [Integer] :size size (default to 25)
399
+ # @return [PageDecisionTree]
400
+ def get_decision_tree_all_using_get(opts = {})
401
+ data, _status_code, _headers = get_decision_tree_all_using_get_with_http_info(opts)
402
+ data
403
+ end
404
+
405
+ # List all decision tree
406
+ # Get the information for all decision trees defined for your firm.
407
+ # @param [Hash] opts the optional parameters
408
+ # @option opts [BOOLEAN] :ascending ascending
409
+ # @option opts [String] :filter filter
410
+ # @option opts [String] :order_by order_by
411
+ # @option opts [Integer] :page page
412
+ # @option opts [Integer] :size size
413
+ # @return [Array<(PageDecisionTree, Fixnum, Hash)>] PageDecisionTree data, response status code and response headers
414
+ def get_decision_tree_all_using_get_with_http_info(opts = {})
415
+ if @api_client.config.debugging
416
+ @api_client.config.logger.debug 'Calling API: DecisionTreeApi.get_decision_tree_all_using_get ...'
417
+ end
418
+ # resource path
419
+ local_var_path = '/nucleus/v1/decision_tree'
420
+
421
+ # query parameters
422
+ query_params = {}
423
+ query_params[:'ascending'] = opts[:'ascending'] if !opts[:'ascending'].nil?
424
+ query_params[:'filter'] = opts[:'filter'] if !opts[:'filter'].nil?
425
+ query_params[:'order_by'] = opts[:'order_by'] if !opts[:'order_by'].nil?
426
+ query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
427
+ query_params[:'size'] = opts[:'size'] if !opts[:'size'].nil?
428
+
429
+ # header parameters
430
+ header_params = {}
431
+ # HTTP header 'Accept' (if needed)
432
+ header_params['Accept'] = @api_client.select_header_accept(['*/*'])
433
+
434
+ # form parameters
435
+ form_params = {}
436
+
437
+ # http body (model)
438
+ post_body = nil
439
+ auth_names = ['oauth2']
440
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path,
441
+ :header_params => header_params,
442
+ :query_params => query_params,
443
+ :form_params => form_params,
444
+ :body => post_body,
445
+ :auth_names => auth_names,
446
+ :return_type => 'PageDecisionTree')
447
+ if @api_client.config.debugging
448
+ @api_client.config.logger.debug "API called: DecisionTreeApi#get_decision_tree_all_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
449
+ end
450
+ return data, status_code, headers
451
+ end
452
+ # Retrieve a decision tree
453
+ # Retrieve the information for a decision tree.
454
+ # @param decision_tree_id UUID decision_tree_id
455
+ # @param [Hash] opts the optional parameters
456
+ # @return [DecisionTree]
457
+ def get_decision_tree_using_get(decision_tree_id, opts = {})
458
+ data, _status_code, _headers = get_decision_tree_using_get_with_http_info(decision_tree_id, opts)
459
+ data
460
+ end
461
+
462
+ # Retrieve a decision tree
463
+ # Retrieve the information for a decision tree.
464
+ # @param decision_tree_id UUID decision_tree_id
465
+ # @param [Hash] opts the optional parameters
466
+ # @return [Array<(DecisionTree, Fixnum, Hash)>] DecisionTree data, response status code and response headers
467
+ def get_decision_tree_using_get_with_http_info(decision_tree_id, opts = {})
468
+ if @api_client.config.debugging
469
+ @api_client.config.logger.debug 'Calling API: DecisionTreeApi.get_decision_tree_using_get ...'
470
+ end
471
+ # verify the required parameter 'decision_tree_id' is set
472
+ if @api_client.config.client_side_validation && decision_tree_id.nil?
473
+ fail ArgumentError, "Missing the required parameter 'decision_tree_id' when calling DecisionTreeApi.get_decision_tree_using_get"
474
+ end
475
+ # resource path
476
+ local_var_path = '/nucleus/v1/decision_tree/{decision_tree_id}'.sub('{' + 'decision_tree_id' + '}', decision_tree_id.to_s)
477
+
478
+ # query parameters
479
+ query_params = {}
480
+
481
+ # header parameters
482
+ header_params = {}
483
+ # HTTP header 'Accept' (if needed)
484
+ header_params['Accept'] = @api_client.select_header_accept(['*/*'])
485
+
486
+ # form parameters
487
+ form_params = {}
488
+
489
+ # http body (model)
490
+ post_body = nil
491
+ auth_names = ['oauth2']
492
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path,
493
+ :header_params => header_params,
494
+ :query_params => query_params,
495
+ :form_params => form_params,
496
+ :body => post_body,
497
+ :auth_names => auth_names,
498
+ :return_type => 'DecisionTree')
499
+ if @api_client.config.debugging
500
+ @api_client.config.logger.debug "API called: DecisionTreeApi#get_decision_tree_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
501
+ end
502
+ return data, status_code, headers
503
+ end
504
+ # List all nodes
505
+ # List all nodes that are defined for your firm.
506
+ # @param [Hash] opts the optional parameters
507
+ # @option opts [BOOLEAN] :ascending ascending (default to false)
508
+ # @option opts [String] :filter filter
509
+ # @option opts [String] :order_by order_by (default to update_date)
510
+ # @option opts [Integer] :page page (default to 0)
511
+ # @option opts [Integer] :size size (default to 25)
512
+ # @return [PageNode]
513
+ def get_node_all_using_get(opts = {})
514
+ data, _status_code, _headers = get_node_all_using_get_with_http_info(opts)
515
+ data
516
+ end
517
+
518
+ # List all nodes
519
+ # List all nodes that are defined for your firm.
520
+ # @param [Hash] opts the optional parameters
521
+ # @option opts [BOOLEAN] :ascending ascending
522
+ # @option opts [String] :filter filter
523
+ # @option opts [String] :order_by order_by
524
+ # @option opts [Integer] :page page
525
+ # @option opts [Integer] :size size
526
+ # @return [Array<(PageNode, Fixnum, Hash)>] PageNode data, response status code and response headers
527
+ def get_node_all_using_get_with_http_info(opts = {})
528
+ if @api_client.config.debugging
529
+ @api_client.config.logger.debug 'Calling API: DecisionTreeApi.get_node_all_using_get ...'
530
+ end
531
+ # resource path
532
+ local_var_path = '/nucleus/v1/node'
533
+
534
+ # query parameters
535
+ query_params = {}
536
+ query_params[:'ascending'] = opts[:'ascending'] if !opts[:'ascending'].nil?
537
+ query_params[:'filter'] = opts[:'filter'] if !opts[:'filter'].nil?
538
+ query_params[:'order_by'] = opts[:'order_by'] if !opts[:'order_by'].nil?
539
+ query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
540
+ query_params[:'size'] = opts[:'size'] if !opts[:'size'].nil?
541
+
542
+ # header parameters
543
+ header_params = {}
544
+ # HTTP header 'Accept' (if needed)
545
+ header_params['Accept'] = @api_client.select_header_accept(['*/*'])
546
+
547
+ # form parameters
548
+ form_params = {}
549
+
550
+ # http body (model)
551
+ post_body = nil
552
+ auth_names = ['oauth2']
553
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path,
554
+ :header_params => header_params,
555
+ :query_params => query_params,
556
+ :form_params => form_params,
557
+ :body => post_body,
558
+ :auth_names => auth_names,
559
+ :return_type => 'PageNode')
560
+ if @api_client.config.debugging
561
+ @api_client.config.logger.debug "API called: DecisionTreeApi#get_node_all_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
562
+ end
563
+ return data, status_code, headers
564
+ end
565
+ # List all node relationships
566
+ # Get the information for all the node relationships defined for your firm.
567
+ # @param [Hash] opts the optional parameters
568
+ # @option opts [BOOLEAN] :ascending ascending (default to false)
569
+ # @option opts [String] :filter filter
570
+ # @option opts [String] :order_by order_by (default to update_date)
571
+ # @option opts [Integer] :page page (default to 0)
572
+ # @option opts [Integer] :size size (default to 25)
573
+ # @return [PageNodeRelationship]
574
+ def get_node_relationship_all_using_get(opts = {})
575
+ data, _status_code, _headers = get_node_relationship_all_using_get_with_http_info(opts)
576
+ data
577
+ end
578
+
579
+ # List all node relationships
580
+ # Get the information for all the node relationships defined for your firm.
581
+ # @param [Hash] opts the optional parameters
582
+ # @option opts [BOOLEAN] :ascending ascending
583
+ # @option opts [String] :filter filter
584
+ # @option opts [String] :order_by order_by
585
+ # @option opts [Integer] :page page
586
+ # @option opts [Integer] :size size
587
+ # @return [Array<(PageNodeRelationship, Fixnum, Hash)>] PageNodeRelationship data, response status code and response headers
588
+ def get_node_relationship_all_using_get_with_http_info(opts = {})
589
+ if @api_client.config.debugging
590
+ @api_client.config.logger.debug 'Calling API: DecisionTreeApi.get_node_relationship_all_using_get ...'
591
+ end
592
+ # resource path
593
+ local_var_path = '/nucleus/v1/node_relationship'
594
+
595
+ # query parameters
596
+ query_params = {}
597
+ query_params[:'ascending'] = opts[:'ascending'] if !opts[:'ascending'].nil?
598
+ query_params[:'filter'] = opts[:'filter'] if !opts[:'filter'].nil?
599
+ query_params[:'order_by'] = opts[:'order_by'] if !opts[:'order_by'].nil?
600
+ query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
601
+ query_params[:'size'] = opts[:'size'] if !opts[:'size'].nil?
602
+
603
+ # header parameters
604
+ header_params = {}
605
+ # HTTP header 'Accept' (if needed)
606
+ header_params['Accept'] = @api_client.select_header_accept(['*/*'])
607
+
608
+ # form parameters
609
+ form_params = {}
610
+
611
+ # http body (model)
612
+ post_body = nil
613
+ auth_names = ['oauth2']
614
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path,
615
+ :header_params => header_params,
616
+ :query_params => query_params,
617
+ :form_params => form_params,
618
+ :body => post_body,
619
+ :auth_names => auth_names,
620
+ :return_type => 'PageNodeRelationship')
621
+ if @api_client.config.debugging
622
+ @api_client.config.logger.debug "API called: DecisionTreeApi#get_node_relationship_all_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
623
+ end
624
+ return data, status_code, headers
625
+ end
626
+ # Retrieve a node relationship
627
+ # Retrieve the information for a node relationship.
628
+ # @param node_relationship_id UUID node_relationship_id
629
+ # @param [Hash] opts the optional parameters
630
+ # @return [NodeRelationship]
631
+ def get_node_relationship_using_get(node_relationship_id, opts = {})
632
+ data, _status_code, _headers = get_node_relationship_using_get_with_http_info(node_relationship_id, opts)
633
+ data
634
+ end
635
+
636
+ # Retrieve a node relationship
637
+ # Retrieve the information for a node relationship.
638
+ # @param node_relationship_id UUID node_relationship_id
639
+ # @param [Hash] opts the optional parameters
640
+ # @return [Array<(NodeRelationship, Fixnum, Hash)>] NodeRelationship data, response status code and response headers
641
+ def get_node_relationship_using_get_with_http_info(node_relationship_id, opts = {})
642
+ if @api_client.config.debugging
643
+ @api_client.config.logger.debug 'Calling API: DecisionTreeApi.get_node_relationship_using_get ...'
644
+ end
645
+ # verify the required parameter 'node_relationship_id' is set
646
+ if @api_client.config.client_side_validation && node_relationship_id.nil?
647
+ fail ArgumentError, "Missing the required parameter 'node_relationship_id' when calling DecisionTreeApi.get_node_relationship_using_get"
648
+ end
649
+ # resource path
650
+ local_var_path = '/nucleus/v1/node_relationship/{node_relationship_id}'.sub('{' + 'node_relationship_id' + '}', node_relationship_id.to_s)
651
+
652
+ # query parameters
653
+ query_params = {}
654
+
655
+ # header parameters
656
+ header_params = {}
657
+ # HTTP header 'Accept' (if needed)
658
+ header_params['Accept'] = @api_client.select_header_accept(['*/*'])
659
+
660
+ # form parameters
661
+ form_params = {}
662
+
663
+ # http body (model)
664
+ post_body = nil
665
+ auth_names = ['oauth2']
666
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path,
667
+ :header_params => header_params,
668
+ :query_params => query_params,
669
+ :form_params => form_params,
670
+ :body => post_body,
671
+ :auth_names => auth_names,
672
+ :return_type => 'NodeRelationship')
673
+ if @api_client.config.debugging
674
+ @api_client.config.logger.debug "API called: DecisionTreeApi#get_node_relationship_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
675
+ end
676
+ return data, status_code, headers
677
+ end
678
+ # Retrieve a node
679
+ # Retrieve the information for a node.
680
+ # @param node_id UUID node_id
681
+ # @param [Hash] opts the optional parameters
682
+ # @return [Node]
683
+ def get_node_using_get(node_id, opts = {})
684
+ data, _status_code, _headers = get_node_using_get_with_http_info(node_id, opts)
685
+ data
686
+ end
687
+
688
+ # Retrieve a node
689
+ # Retrieve the information for a node.
690
+ # @param node_id UUID node_id
691
+ # @param [Hash] opts the optional parameters
692
+ # @return [Array<(Node, Fixnum, Hash)>] Node data, response status code and response headers
693
+ def get_node_using_get_with_http_info(node_id, opts = {})
694
+ if @api_client.config.debugging
695
+ @api_client.config.logger.debug 'Calling API: DecisionTreeApi.get_node_using_get ...'
696
+ end
697
+ # verify the required parameter 'node_id' is set
698
+ if @api_client.config.client_side_validation && node_id.nil?
699
+ fail ArgumentError, "Missing the required parameter 'node_id' when calling DecisionTreeApi.get_node_using_get"
700
+ end
701
+ # resource path
702
+ local_var_path = '/nucleus/v1/node/{node_id}'.sub('{' + 'node_id' + '}', node_id.to_s)
703
+
704
+ # query parameters
705
+ query_params = {}
706
+
707
+ # header parameters
708
+ header_params = {}
709
+ # HTTP header 'Accept' (if needed)
710
+ header_params['Accept'] = @api_client.select_header_accept(['*/*'])
711
+
712
+ # form parameters
713
+ form_params = {}
714
+
715
+ # http body (model)
716
+ post_body = nil
717
+ auth_names = ['oauth2']
718
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path,
719
+ :header_params => header_params,
720
+ :query_params => query_params,
721
+ :form_params => form_params,
722
+ :body => post_body,
723
+ :auth_names => auth_names,
724
+ :return_type => 'Node')
725
+ if @api_client.config.debugging
726
+ @api_client.config.logger.debug "API called: DecisionTreeApi#get_node_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
727
+ end
728
+ return data, status_code, headers
729
+ end
730
+ # Update a decision tree
731
+ # Updated the information for a decision tree.
732
+ # @param decision_tree decision_tree
733
+ # @param decision_tree_id UUID decision_tree_id
734
+ # @param [Hash] opts the optional parameters
735
+ # @return [DecisionTree]
736
+ def update_decision_tree_using_put(decision_tree, decision_tree_id, opts = {})
737
+ data, _status_code, _headers = update_decision_tree_using_put_with_http_info(decision_tree, decision_tree_id, opts)
738
+ data
739
+ end
740
+
741
+ # Update a decision tree
742
+ # Updated the information for a decision tree.
743
+ # @param decision_tree decision_tree
744
+ # @param decision_tree_id UUID decision_tree_id
745
+ # @param [Hash] opts the optional parameters
746
+ # @return [Array<(DecisionTree, Fixnum, Hash)>] DecisionTree data, response status code and response headers
747
+ def update_decision_tree_using_put_with_http_info(decision_tree, decision_tree_id, opts = {})
748
+ if @api_client.config.debugging
749
+ @api_client.config.logger.debug 'Calling API: DecisionTreeApi.update_decision_tree_using_put ...'
750
+ end
751
+ # verify the required parameter 'decision_tree' is set
752
+ if @api_client.config.client_side_validation && decision_tree.nil?
753
+ fail ArgumentError, "Missing the required parameter 'decision_tree' when calling DecisionTreeApi.update_decision_tree_using_put"
754
+ end
755
+ # verify the required parameter 'decision_tree_id' is set
756
+ if @api_client.config.client_side_validation && decision_tree_id.nil?
757
+ fail ArgumentError, "Missing the required parameter 'decision_tree_id' when calling DecisionTreeApi.update_decision_tree_using_put"
758
+ end
759
+ # resource path
760
+ local_var_path = '/nucleus/v1/decision_tree/{decision_tree_id}'.sub('{' + 'decision_tree_id' + '}', decision_tree_id.to_s)
761
+
762
+ # query parameters
763
+ query_params = {}
764
+
765
+ # header parameters
766
+ header_params = {}
767
+ # HTTP header 'Accept' (if needed)
768
+ header_params['Accept'] = @api_client.select_header_accept(['*/*'])
769
+ # HTTP header 'Content-Type'
770
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
771
+
772
+ # form parameters
773
+ form_params = {}
774
+
775
+ # http body (model)
776
+ post_body = @api_client.object_to_http_body(decision_tree)
777
+ auth_names = ['oauth2']
778
+ data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
779
+ :header_params => header_params,
780
+ :query_params => query_params,
781
+ :form_params => form_params,
782
+ :body => post_body,
783
+ :auth_names => auth_names,
784
+ :return_type => 'DecisionTree')
785
+ if @api_client.config.debugging
786
+ @api_client.config.logger.debug "API called: DecisionTreeApi#update_decision_tree_using_put\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
787
+ end
788
+ return data, status_code, headers
789
+ end
790
+ # Update a node relationship
791
+ # Update the information for a node relationship.
792
+ # @param json_node jsonNode
793
+ # @param node_relationship_id UUID node_relationship_id
794
+ # @param [Hash] opts the optional parameters
795
+ # @return [NodeRelationship]
796
+ def update_node_relationship_using_put(json_node, node_relationship_id, opts = {})
797
+ data, _status_code, _headers = update_node_relationship_using_put_with_http_info(json_node, node_relationship_id, opts)
798
+ data
799
+ end
800
+
801
+ # Update a node relationship
802
+ # Update the information for a node relationship.
803
+ # @param json_node jsonNode
804
+ # @param node_relationship_id UUID node_relationship_id
805
+ # @param [Hash] opts the optional parameters
806
+ # @return [Array<(NodeRelationship, Fixnum, Hash)>] NodeRelationship data, response status code and response headers
807
+ def update_node_relationship_using_put_with_http_info(json_node, node_relationship_id, opts = {})
808
+ if @api_client.config.debugging
809
+ @api_client.config.logger.debug 'Calling API: DecisionTreeApi.update_node_relationship_using_put ...'
810
+ end
811
+ # verify the required parameter 'json_node' is set
812
+ if @api_client.config.client_side_validation && json_node.nil?
813
+ fail ArgumentError, "Missing the required parameter 'json_node' when calling DecisionTreeApi.update_node_relationship_using_put"
814
+ end
815
+ # verify the required parameter 'node_relationship_id' is set
816
+ if @api_client.config.client_side_validation && node_relationship_id.nil?
817
+ fail ArgumentError, "Missing the required parameter 'node_relationship_id' when calling DecisionTreeApi.update_node_relationship_using_put"
818
+ end
819
+ # resource path
820
+ local_var_path = '/nucleus/v1/node_relationship/{node_relationship_id}'.sub('{' + 'node_relationship_id' + '}', node_relationship_id.to_s)
821
+
822
+ # query parameters
823
+ query_params = {}
824
+
825
+ # header parameters
826
+ header_params = {}
827
+ # HTTP header 'Accept' (if needed)
828
+ header_params['Accept'] = @api_client.select_header_accept(['*/*'])
829
+ # HTTP header 'Content-Type'
830
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
831
+
832
+ # form parameters
833
+ form_params = {}
834
+
835
+ # http body (model)
836
+ post_body = @api_client.object_to_http_body(json_node)
837
+ auth_names = ['oauth2']
838
+ data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
839
+ :header_params => header_params,
840
+ :query_params => query_params,
841
+ :form_params => form_params,
842
+ :body => post_body,
843
+ :auth_names => auth_names,
844
+ :return_type => 'NodeRelationship')
845
+ if @api_client.config.debugging
846
+ @api_client.config.logger.debug "API called: DecisionTreeApi#update_node_relationship_using_put\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
847
+ end
848
+ return data, status_code, headers
849
+ end
850
+ # Update a node
851
+ # Updated the information for a node.
852
+ # @param json_node jsonNode
853
+ # @param node_id UUID node_id
854
+ # @param [Hash] opts the optional parameters
855
+ # @return [Node]
856
+ def update_node_using_put(json_node, node_id, opts = {})
857
+ data, _status_code, _headers = update_node_using_put_with_http_info(json_node, node_id, opts)
858
+ data
859
+ end
860
+
861
+ # Update a node
862
+ # Updated the information for a node.
863
+ # @param json_node jsonNode
864
+ # @param node_id UUID node_id
865
+ # @param [Hash] opts the optional parameters
866
+ # @return [Array<(Node, Fixnum, Hash)>] Node data, response status code and response headers
867
+ def update_node_using_put_with_http_info(json_node, node_id, opts = {})
868
+ if @api_client.config.debugging
869
+ @api_client.config.logger.debug 'Calling API: DecisionTreeApi.update_node_using_put ...'
870
+ end
871
+ # verify the required parameter 'json_node' is set
872
+ if @api_client.config.client_side_validation && json_node.nil?
873
+ fail ArgumentError, "Missing the required parameter 'json_node' when calling DecisionTreeApi.update_node_using_put"
874
+ end
875
+ # verify the required parameter 'node_id' is set
876
+ if @api_client.config.client_side_validation && node_id.nil?
877
+ fail ArgumentError, "Missing the required parameter 'node_id' when calling DecisionTreeApi.update_node_using_put"
878
+ end
879
+ # resource path
880
+ local_var_path = '/nucleus/v1/node/{node_id}'.sub('{' + 'node_id' + '}', node_id.to_s)
881
+
882
+ # query parameters
883
+ query_params = {}
884
+
885
+ # header parameters
886
+ header_params = {}
887
+ # HTTP header 'Accept' (if needed)
888
+ header_params['Accept'] = @api_client.select_header_accept(['*/*'])
889
+ # HTTP header 'Content-Type'
890
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
891
+
892
+ # form parameters
893
+ form_params = {}
894
+
895
+ # http body (model)
896
+ post_body = @api_client.object_to_http_body(json_node)
897
+ auth_names = ['oauth2']
898
+ data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
899
+ :header_params => header_params,
900
+ :query_params => query_params,
901
+ :form_params => form_params,
902
+ :body => post_body,
903
+ :auth_names => auth_names,
904
+ :return_type => 'Node')
905
+ if @api_client.config.debugging
906
+ @api_client.config.logger.debug "API called: DecisionTreeApi#update_node_using_put\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
907
+ end
908
+ return data, status_code, headers
909
+ end
910
+ end
911
+ end