fuse_client 1.0.37 → 1.0.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +3 -3
  3. data/docs/{SpendPower.md → ConsumerRiskReport.md} +5 -5
  4. data/docs/{SpendPowerCustomization.md → ConsumerRiskReportCustomization.md} +6 -6
  5. data/docs/{SpendPowerTimeFrame.md → ConsumerRiskReportTimeFrame.md} +2 -2
  6. data/docs/{CreateSpendPowerCustomizationRequest.md → CreateConsumerRiskReportCustomizationRequest.md} +5 -5
  7. data/docs/{CreateSpendPowerCustomizationResponse.md → CreateConsumerRiskReportCustomizationResponse.md} +2 -2
  8. data/docs/{CreateSpendPowerRequest.md → CreateConsumerRiskReportRequest.md} +4 -4
  9. data/docs/{DeleteSpendPowerResponse.md → CreateConsumerRiskReportResponse.md} +3 -3
  10. data/docs/{CreateSpendPowerResponse.md → DeleteConsumerRiskReportResponse.md} +3 -3
  11. data/docs/EvalConsumerRiskReportRequest.md +22 -0
  12. data/docs/{EvalSpendPowerRequestEventsInner.md → EvalConsumerRiskReportRequestEventsInner.md} +2 -2
  13. data/docs/{EvalSpendPowerResponse.md → EvalConsumerRiskReportResponse.md} +2 -2
  14. data/docs/ExternalTransactionEvent.md +2 -2
  15. data/docs/FinancialConnectionDetails.md +5 -1
  16. data/docs/FinancialConnectionDetailsBasiq.md +20 -0
  17. data/docs/FinancialConnectionDetailsBelvo.md +20 -0
  18. data/docs/FinancialConnectionsInvestmentSecurityExchange.md +3 -1
  19. data/docs/FinancialConnectionsOwnerAddressesInnerData.md +2 -0
  20. data/docs/FuseApi.md +152 -148
  21. data/docs/{GetSpendPowerCustomizationResponse.md → GetConsumerRiskReportCustomizationResponse.md} +4 -4
  22. data/docs/{GetSpendPowerResponse.md → GetConsumerRiskReportResponse.md} +4 -4
  23. data/docs/InAppTransactionEvent.md +1 -1
  24. data/docs/RiskReportApi.md +165 -0
  25. data/docs/Transaction.md +1 -1
  26. data/docs/{UpdateSpendPowerCustomizationRequest.md → UpdateConsumerRiskReportCustomizationRequest.md} +5 -5
  27. data/docs/{UpdateSpendPowerCustomizationResponse.md → UpdateConsumerRiskReportCustomizationResponse.md} +2 -2
  28. data/docs/UpdatedBalanceEvent.md +2 -2
  29. data/fuse_client-1.0.37.gem +0 -0
  30. data/lib/fuse_client/api/fuse_api.rb +142 -139
  31. data/lib/fuse_client/api/{spend_power_api.rb → risk_report_api.rb} +39 -39
  32. data/lib/fuse_client/models/account_subtype.rb +3 -2
  33. data/lib/fuse_client/models/aggregator.rb +3 -1
  34. data/lib/fuse_client/models/{spend_power.rb → consumer_risk_report.rb} +4 -6
  35. data/lib/fuse_client/models/{spend_power_customization.rb → consumer_risk_report_customization.rb} +6 -7
  36. data/lib/fuse_client/models/{spend_power_time_frame.rb → consumer_risk_report_time_frame.rb} +3 -3
  37. data/lib/fuse_client/models/{create_spend_power_customization_request.rb → create_consumer_risk_report_customization_request.rb} +6 -6
  38. data/lib/fuse_client/models/{create_spend_power_customization_response.rb → create_consumer_risk_report_customization_response.rb} +3 -3
  39. data/lib/fuse_client/models/{create_spend_power_request.rb → create_consumer_risk_report_request.rb} +5 -5
  40. data/lib/fuse_client/models/{delete_spend_power_response.rb → create_consumer_risk_report_response.rb} +3 -4
  41. data/lib/fuse_client/models/{create_spend_power_response.rb → delete_consumer_risk_report_response.rb} +3 -4
  42. data/lib/fuse_client/models/{eval_spend_power_request.rb → eval_consumer_risk_report_request.rb} +5 -5
  43. data/lib/fuse_client/models/{eval_spend_power_request_events_inner.rb → eval_consumer_risk_report_request_events_inner.rb} +3 -3
  44. data/lib/fuse_client/models/{eval_spend_power_response.rb → eval_consumer_risk_report_response.rb} +3 -3
  45. data/lib/fuse_client/models/external_transaction_event.rb +1 -6
  46. data/lib/fuse_client/models/financial_connection_details.rb +22 -4
  47. data/lib/fuse_client/models/financial_connection_details_basiq.rb +241 -0
  48. data/lib/fuse_client/models/financial_connection_details_belvo.rb +236 -0
  49. data/lib/fuse_client/models/financial_connections_investment_security_exchange.rb +14 -4
  50. data/lib/fuse_client/models/financial_connections_owner_addresses_inner_data.rb +11 -1
  51. data/lib/fuse_client/models/fuse_api_error_code.rb +6 -3
  52. data/lib/fuse_client/models/get_consumer_risk_report_customization_response.rb +239 -0
  53. data/lib/fuse_client/models/{get_spend_power_response.rb → get_consumer_risk_report_response.rb} +13 -13
  54. data/lib/fuse_client/models/in_app_transaction_event.rb +0 -5
  55. data/lib/fuse_client/models/transaction.rb +1 -1
  56. data/lib/fuse_client/models/{update_spend_power_customization_request.rb → update_consumer_risk_report_customization_request.rb} +6 -6
  57. data/lib/fuse_client/models/{update_spend_power_customization_response.rb → update_consumer_risk_report_customization_response.rb} +3 -3
  58. data/lib/fuse_client/models/updated_balance_event.rb +2 -2
  59. data/lib/fuse_client/version.rb +1 -1
  60. data/lib/fuse_client.rb +18 -16
  61. data/spec/api/fuse_api_spec.rb +37 -36
  62. data/spec/api/{spend_power_api_spec.rb → risk_report_api_spec.rb} +16 -16
  63. data/spec/models/{spend_power_customization_spec.rb → consumer_risk_report_customization_spec.rb} +6 -6
  64. data/spec/models/{spend_power_spec.rb → consumer_risk_report_spec.rb} +6 -6
  65. data/spec/models/{spend_power_time_frame_spec.rb → consumer_risk_report_time_frame_spec.rb} +6 -6
  66. data/spec/models/{create_spend_power_customization_request_spec.rb → create_consumer_risk_report_customization_request_spec.rb} +6 -6
  67. data/spec/models/{create_spend_power_customization_response_spec.rb → create_consumer_risk_report_customization_response_spec.rb} +6 -6
  68. data/spec/models/{create_spend_power_request_spec.rb → create_consumer_risk_report_request_spec.rb} +6 -6
  69. data/spec/models/{delete_spend_power_response_spec.rb → create_consumer_risk_report_response_spec.rb} +6 -6
  70. data/spec/models/{create_spend_power_response_spec.rb → delete_consumer_risk_report_response_spec.rb} +6 -6
  71. data/spec/models/{eval_spend_power_request_events_inner_spec.rb → eval_consumer_risk_report_request_events_inner_spec.rb} +6 -6
  72. data/spec/models/{eval_spend_power_request_spec.rb → eval_consumer_risk_report_request_spec.rb} +6 -6
  73. data/spec/models/{eval_spend_power_response_spec.rb → eval_consumer_risk_report_response_spec.rb} +6 -6
  74. data/spec/models/financial_connection_details_basiq_spec.rb +40 -0
  75. data/spec/models/financial_connection_details_belvo_spec.rb +40 -0
  76. data/spec/models/financial_connection_details_spec.rb +12 -0
  77. data/spec/models/financial_connections_investment_security_exchange_spec.rb +6 -0
  78. data/spec/models/financial_connections_owner_addresses_inner_data_spec.rb +6 -0
  79. data/spec/models/{get_spend_power_customization_response_spec.rb → get_consumer_risk_report_customization_response_spec.rb} +7 -7
  80. data/spec/models/{get_spend_power_response_spec.rb → get_consumer_risk_report_response_spec.rb} +7 -7
  81. data/spec/models/{update_spend_power_customization_request_spec.rb → update_consumer_risk_report_customization_request_spec.rb} +6 -6
  82. data/spec/models/{update_spend_power_customization_response_spec.rb → update_consumer_risk_report_customization_response_spec.rb} +6 -6
  83. metadata +74 -65
  84. data/docs/EvalSpendPowerRequest.md +0 -22
  85. data/docs/SpendPowerApi.md +0 -165
  86. data/lib/fuse_client/models/get_spend_power_customization_response.rb +0 -239
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 97c0f377cd1fe329c490e38717e993b7083584e0ee02a9ce5016774ed86f9a87
4
- data.tar.gz: a0205d7fbf59bccef126a42e6756b8479722d2c4c269c9be0eee78ffaecfc602
3
+ metadata.gz: 351d5ff5a46eaedee35749af460dc341d897dc6a9bc42e00b66316d57df26a8a
4
+ data.tar.gz: 2e1b7c5b760b4adf13f5458a5c4ea04be6c90108be98f0d4501946ea29574c03
5
5
  SHA512:
6
- metadata.gz: 4f3e5e162fd03432fbb5ea5431be315c20db424fd614684c3c5e6ddc4483cbb046217b1af09c49d87191699eb671ed7a700b26098daa60cdb2a67b5f3e470ba8
7
- data.tar.gz: a6cb5e33851c2e7fe87bdcd509924472b3abd0ee21f153f62e7d3dcbb389fe54ffdc6fa39239a570c223cc39e1817b4ca5530dc5bf8be639e38d6df6d9711e88
6
+ metadata.gz: 4dcae290bc05b205832431c53b1375c8be1cfea1e2a18eff5dd59bb5b5b7c8b2854076d87fababc6a97583d75739a4b44fec6033858f6b65917a0c103d10873a
7
+ data.tar.gz: d8926148e2f571491c9e8f4e79e1df937dabe48c56aea0a94803250e4c6bde81d2203c7abcef2317897ded6fec3cd0fb924b71f9c51737ffef5e2222de513afb
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fuse_client (1.0.37)
4
+ fuse_client (1.0.38)
5
5
  typhoeus (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
@@ -28,7 +28,7 @@ GEM
28
28
  pry (>= 0.13, < 0.15)
29
29
  psych (5.1.0)
30
30
  stringio
31
- racc (1.7.0)
31
+ racc (1.7.1)
32
32
  rainbow (3.1.1)
33
33
  rake (13.0.6)
34
34
  rspec (3.12.0)
@@ -43,7 +43,7 @@ GEM
43
43
  rspec-mocks (3.12.5)
44
44
  diff-lcs (>= 1.2.0, < 2.0)
45
45
  rspec-support (~> 3.12.0)
46
- rspec-support (3.12.0)
46
+ rspec-support (3.12.1)
47
47
  rubocop (0.66.0)
48
48
  jaro_winkler (~> 1.5.1)
49
49
  parallel (~> 1.10)
@@ -1,16 +1,16 @@
1
- # FuseClient::SpendPower
1
+ # FuseClient::ConsumerRiskReport
2
2
 
3
3
  ## Properties
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **id** | **String** | The id of the spend power | |
8
- | **customization_id** | **String** | The customization id of the spend power. | |
7
+ | **id** | **String** | | |
8
+ | **customization_id** | **String** | | |
9
9
  | **spend_limit** | **Float** | The total limit for the current timeframe, in cents. | |
10
10
  | **current_spend** | **Float** | The total current spend in the current timeframe, in cents, without factoring in pending payments. | |
11
11
  | **pending_payments_amount** | **Float** | The total unpaid amount, in cents, from all timeframes. | |
12
12
  | **iso_currency_code** | **String** | The ISO-4217 currency code of the transaction | |
13
- | **last_updated** | **String** | The datetime of when the spend power was most recently updated, in ISO-8601 format. | |
13
+ | **last_updated** | **String** | The datetime of when the consumer risk report was most recently updated, in ISO-8601 format. | |
14
14
  | **finance_score** | [**FinanceScore**](FinanceScore.md) | | |
15
15
  | **predicted_balance** | **Float** | Predicted balance for the timeframe. | |
16
16
 
@@ -19,7 +19,7 @@
19
19
  ```ruby
20
20
  require 'fuse_client'
21
21
 
22
- instance = FuseClient::SpendPower.new(
22
+ instance = FuseClient::ConsumerRiskReport.new(
23
23
  id: null,
24
24
  customization_id: null,
25
25
  spend_limit: null,
@@ -1,13 +1,13 @@
1
- # FuseClient::SpendPowerCustomization
1
+ # FuseClient::ConsumerRiskReportCustomization
2
2
 
3
3
  ## Properties
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **id** | **String** | The id of the spend power customization | |
8
- | **timeframe** | [**SpendPowerTimeFrame**](SpendPowerTimeFrame.md) | | |
9
- | **min_limit** | **Integer** | The minimum allowed limit for the spend power, in cents. | |
10
- | **max_limit** | **Integer** | The maximum allowed limit for the spend power, in cents. | |
7
+ | **id** | **String** | | |
8
+ | **timeframe** | [**ConsumerRiskReportTimeFrame**](ConsumerRiskReportTimeFrame.md) | | |
9
+ | **min_limit** | **Integer** | The minimum allowed limit, in cents. | |
10
+ | **max_limit** | **Integer** | The maximum allowed limit, in cents. | |
11
11
  | **risk_tolerance** | **Integer** | This parameter indicates the risk tolerance associated with spend limits. A high risk tolerance allow for higher limits, increasing both potential gains and losses. A Lower risk tolerance enforces strict limits, reducing the potential for loss but also limiting transaction volume for reliable users. | [optional] |
12
12
 
13
13
  ## Example
@@ -15,7 +15,7 @@
15
15
  ```ruby
16
16
  require 'fuse_client'
17
17
 
18
- instance = FuseClient::SpendPowerCustomization.new(
18
+ instance = FuseClient::ConsumerRiskReportCustomization.new(
19
19
  id: null,
20
20
  timeframe: null,
21
21
  min_limit: null,
@@ -1,4 +1,4 @@
1
- # FuseClient::SpendPowerTimeFrame
1
+ # FuseClient::ConsumerRiskReportTimeFrame
2
2
 
3
3
  ## Properties
4
4
 
@@ -10,6 +10,6 @@
10
10
  ```ruby
11
11
  require 'fuse_client'
12
12
 
13
- instance = FuseClient::SpendPowerTimeFrame.new()
13
+ instance = FuseClient::ConsumerRiskReportTimeFrame.new()
14
14
  ```
15
15
 
@@ -1,12 +1,12 @@
1
- # FuseClient::CreateSpendPowerCustomizationRequest
1
+ # FuseClient::CreateConsumerRiskReportCustomizationRequest
2
2
 
3
3
  ## Properties
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **timeframe** | [**SpendPowerTimeFrame**](SpendPowerTimeFrame.md) | | |
8
- | **min_limit** | **Float** | The minimum allowed limit for the spend power, in cents. | |
9
- | **max_limit** | **Float** | The maximum allowed limit for the spend power, in cents. | |
7
+ | **timeframe** | [**ConsumerRiskReportTimeFrame**](ConsumerRiskReportTimeFrame.md) | | |
8
+ | **min_limit** | **Float** | The minimum allowed limit, in cents. | |
9
+ | **max_limit** | **Float** | The maximum allowed limit, in cents. | |
10
10
  | **risk_tolerance** | **Float** | This parameter indicates the risk tolerance associated with spend limits. A high risk tolerance allow for higher limits, increasing both potential gains and losses. A Lower risk tolerance enforces strict limits, reducing the potential for loss but also limiting transaction volume for reliable users. | |
11
11
 
12
12
  ## Example
@@ -14,7 +14,7 @@
14
14
  ```ruby
15
15
  require 'fuse_client'
16
16
 
17
- instance = FuseClient::CreateSpendPowerCustomizationRequest.new(
17
+ instance = FuseClient::CreateConsumerRiskReportCustomizationRequest.new(
18
18
  timeframe: null,
19
19
  min_limit: null,
20
20
  max_limit: null,
@@ -1,4 +1,4 @@
1
- # FuseClient::CreateSpendPowerCustomizationResponse
1
+ # FuseClient::CreateConsumerRiskReportCustomizationResponse
2
2
 
3
3
  ## Properties
4
4
 
@@ -12,7 +12,7 @@
12
12
  ```ruby
13
13
  require 'fuse_client'
14
14
 
15
- instance = FuseClient::CreateSpendPowerCustomizationResponse.new(
15
+ instance = FuseClient::CreateConsumerRiskReportCustomizationResponse.new(
16
16
  id: null,
17
17
  request_id: null
18
18
  )
@@ -1,19 +1,19 @@
1
- # FuseClient::CreateSpendPowerRequest
1
+ # FuseClient::CreateConsumerRiskReportRequest
2
2
 
3
3
  ## Properties
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **account_id** | **String** | A unique ID representing the bank account that this spend power is calculated for. Typically this will be a bank connection account ID from your application. It is currently used as a means of connecting events to the spend power. | |
7
+ | **account_id** | **String** | A unique ID representing the bank account that this risk report is calculated for. Typically this will be a bank connection account ID from your application. It is currently used as a means of connecting events to the consumer risk report. | |
8
8
  | **iso_currency_code** | **String** | The ISO-4217 currency code of the transaction | |
9
- | **customization_id** | **String** | The spend power customization id. This is used to determine the timeframe and other metadata for the spend power. | |
9
+ | **customization_id** | **String** | This is used to determine the timeframe and other metadata for the consumer risk report. | |
10
10
 
11
11
  ## Example
12
12
 
13
13
  ```ruby
14
14
  require 'fuse_client'
15
15
 
16
- instance = FuseClient::CreateSpendPowerRequest.new(
16
+ instance = FuseClient::CreateConsumerRiskReportRequest.new(
17
17
  account_id: null,
18
18
  iso_currency_code: null,
19
19
  customization_id: null
@@ -1,10 +1,10 @@
1
- # FuseClient::DeleteSpendPowerResponse
1
+ # FuseClient::CreateConsumerRiskReportResponse
2
2
 
3
3
  ## Properties
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **id** | **String** | The id of the deleted spend power | |
7
+ | **id** | **String** | | |
8
8
  | **request_id** | **String** | An identifier that is exclusive to the request and can serve as a means for investigating and resolving issues. | |
9
9
 
10
10
  ## Example
@@ -12,7 +12,7 @@
12
12
  ```ruby
13
13
  require 'fuse_client'
14
14
 
15
- instance = FuseClient::DeleteSpendPowerResponse.new(
15
+ instance = FuseClient::CreateConsumerRiskReportResponse.new(
16
16
  id: null,
17
17
  request_id: null
18
18
  )
@@ -1,10 +1,10 @@
1
- # FuseClient::CreateSpendPowerResponse
1
+ # FuseClient::DeleteConsumerRiskReportResponse
2
2
 
3
3
  ## Properties
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **id** | **String** | The id of the created spend power. | |
7
+ | **id** | **String** | | |
8
8
  | **request_id** | **String** | An identifier that is exclusive to the request and can serve as a means for investigating and resolving issues. | |
9
9
 
10
10
  ## Example
@@ -12,7 +12,7 @@
12
12
  ```ruby
13
13
  require 'fuse_client'
14
14
 
15
- instance = FuseClient::CreateSpendPowerResponse.new(
15
+ instance = FuseClient::DeleteConsumerRiskReportResponse.new(
16
16
  id: null,
17
17
  request_id: null
18
18
  )
@@ -0,0 +1,22 @@
1
+ # FuseClient::EvalConsumerRiskReportRequest
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **window_size** | **Float** | The size of the window for training | |
8
+ | **time_frame** | [**ConsumerRiskReportTimeFrame**](ConsumerRiskReportTimeFrame.md) | | |
9
+ | **events** | [**Array&lt;EvalConsumerRiskReportRequestEventsInner&gt;**](EvalConsumerRiskReportRequestEventsInner.md) | | |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'fuse_client'
15
+
16
+ instance = FuseClient::EvalConsumerRiskReportRequest.new(
17
+ window_size: null,
18
+ time_frame: null,
19
+ events: null
20
+ )
21
+ ```
22
+
@@ -1,4 +1,4 @@
1
- # FuseClient::EvalSpendPowerRequestEventsInner
1
+ # FuseClient::EvalConsumerRiskReportRequestEventsInner
2
2
 
3
3
  ## Properties
4
4
 
@@ -12,7 +12,7 @@
12
12
  ```ruby
13
13
  require 'fuse_client'
14
14
 
15
- instance = FuseClient::EvalSpendPowerRequestEventsInner.new(
15
+ instance = FuseClient::EvalConsumerRiskReportRequestEventsInner.new(
16
16
  account_id: null,
17
17
  event: null
18
18
  )
@@ -1,4 +1,4 @@
1
- # FuseClient::EvalSpendPowerResponse
1
+ # FuseClient::EvalConsumerRiskReportResponse
2
2
 
3
3
  ## Properties
4
4
 
@@ -14,7 +14,7 @@
14
14
  ```ruby
15
15
  require 'fuse_client'
16
16
 
17
- instance = FuseClient::EvalSpendPowerResponse.new(
17
+ instance = FuseClient::EvalConsumerRiskReportResponse.new(
18
18
  mean_granted_above_failed_payments: null,
19
19
  mean_granted_below_failed_payments: null,
20
20
  mean_predicted_limits: null,
@@ -7,9 +7,9 @@
7
7
  | **id** | **String** | ID of the transaction | |
8
8
  | **event_type** | **String** | | |
9
9
  | **status** | [**ExternalTransactionEventStatus**](ExternalTransactionEventStatus.md) | | |
10
- | **amount** | **Float** | Use positive values to represent money going out and negative to represent money going in. | |
10
+ | **amount** | **Float** | Amount in cents associated with the transaction. Use positive values to represent money going out and negative to represent money going in. | |
11
11
  | **iso_currency_code** | **String** | The ISO-4217 currency code. | |
12
- | **transaction_type** | [**TransactionEventType**](TransactionEventType.md) | | |
12
+ | **transaction_type** | [**TransactionEventType**](TransactionEventType.md) | | [optional] |
13
13
  | **merchant_name** | **String** | | |
14
14
  | **timestamp** | **String** | Datetime of the transaction In ISO-8601 format | |
15
15
  | **balance** | **Float** | The running balance of the account after the transaction has occurred, in cents | [optional] |
@@ -17,6 +17,8 @@
17
17
  | **mono** | [**FinancialConnectionDetailsMono**](FinancialConnectionDetailsMono.md) | | [optional] |
18
18
  | **truelayer** | [**FinancialConnectionDetailsTruelayer**](FinancialConnectionDetailsTruelayer.md) | | [optional] |
19
19
  | **finverse** | [**FinancialConnectionDetailsFinverse**](FinancialConnectionDetailsFinverse.md) | | [optional] |
20
+ | **basiq** | [**FinancialConnectionDetailsBasiq**](FinancialConnectionDetailsBasiq.md) | | [optional] |
21
+ | **belvo** | [**FinancialConnectionDetailsBelvo**](FinancialConnectionDetailsBelvo.md) | | [optional] |
20
22
 
21
23
  ## Example
22
24
 
@@ -36,7 +38,9 @@ instance = FuseClient::FinancialConnectionDetails.new(
36
38
  flinks: null,
37
39
  mono: null,
38
40
  truelayer: null,
39
- finverse: null
41
+ finverse: null,
42
+ basiq: null,
43
+ belvo: null
40
44
  )
41
45
  ```
42
46
 
@@ -0,0 +1,20 @@
1
+ # FuseClient::FinancialConnectionDetailsBasiq
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **user_id** | **String** | The identifier of the user for Basiq. | |
8
+ | **connection_id** | **String** | The identifier of the connection for Basiq. | |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'fuse_client'
14
+
15
+ instance = FuseClient::FinancialConnectionDetailsBasiq.new(
16
+ user_id: null,
17
+ connection_id: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,20 @@
1
+ # FuseClient::FinancialConnectionDetailsBelvo
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **link_id** | **String** | The identifier of the link for Belvo. | |
8
+ | **institution** | **String** | The identifier of the institution for Belvo. | [optional] |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'fuse_client'
14
+
15
+ instance = FuseClient::FinancialConnectionDetailsBelvo.new(
16
+ link_id: null,
17
+ institution: null
18
+ )
19
+ ```
20
+
@@ -5,6 +5,7 @@
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **mic_code** | **String** | The Market Identifier Code (MIC) associated with the specific financial market or exchange where the security is traded. | [optional] |
8
+ | **suffix** | **String** | The suffix of the security&#39;s ticker symbol. | [optional] |
8
9
 
9
10
  ## Example
10
11
 
@@ -12,7 +13,8 @@
12
13
  require 'fuse_client'
13
14
 
14
15
  instance = FuseClient::FinancialConnectionsInvestmentSecurityExchange.new(
15
- mic_code: null
16
+ mic_code: null,
17
+ suffix: null
16
18
  )
17
19
  ```
18
20
 
@@ -4,6 +4,7 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
+ | **full_address** | **String** | Full address of the owner | [optional] |
7
8
  | **city** | **String** | City of the address | [optional] |
8
9
  | **country** | **String** | Country of the address | [optional] |
9
10
  | **postal_code** | **String** | Postal code of the address | [optional] |
@@ -16,6 +17,7 @@
16
17
  require 'fuse_client'
17
18
 
18
19
  instance = FuseClient::FinancialConnectionsOwnerAddressesInnerData.new(
20
+ full_address: null,
19
21
  city: null,
20
22
  country: null,
21
23
  postal_code: null,