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.
- checksums.yaml +4 -4
- data/Gemfile.lock +3 -3
- data/docs/{SpendPower.md → ConsumerRiskReport.md} +5 -5
- data/docs/{SpendPowerCustomization.md → ConsumerRiskReportCustomization.md} +6 -6
- data/docs/{SpendPowerTimeFrame.md → ConsumerRiskReportTimeFrame.md} +2 -2
- data/docs/{CreateSpendPowerCustomizationRequest.md → CreateConsumerRiskReportCustomizationRequest.md} +5 -5
- data/docs/{CreateSpendPowerCustomizationResponse.md → CreateConsumerRiskReportCustomizationResponse.md} +2 -2
- data/docs/{CreateSpendPowerRequest.md → CreateConsumerRiskReportRequest.md} +4 -4
- data/docs/{DeleteSpendPowerResponse.md → CreateConsumerRiskReportResponse.md} +3 -3
- data/docs/{CreateSpendPowerResponse.md → DeleteConsumerRiskReportResponse.md} +3 -3
- data/docs/EvalConsumerRiskReportRequest.md +22 -0
- data/docs/{EvalSpendPowerRequestEventsInner.md → EvalConsumerRiskReportRequestEventsInner.md} +2 -2
- data/docs/{EvalSpendPowerResponse.md → EvalConsumerRiskReportResponse.md} +2 -2
- data/docs/ExternalTransactionEvent.md +2 -2
- data/docs/FinancialConnectionDetails.md +5 -1
- data/docs/FinancialConnectionDetailsBasiq.md +20 -0
- data/docs/FinancialConnectionDetailsBelvo.md +20 -0
- data/docs/FinancialConnectionsInvestmentSecurityExchange.md +3 -1
- data/docs/FinancialConnectionsOwnerAddressesInnerData.md +2 -0
- data/docs/FuseApi.md +152 -148
- data/docs/{GetSpendPowerCustomizationResponse.md → GetConsumerRiskReportCustomizationResponse.md} +4 -4
- data/docs/{GetSpendPowerResponse.md → GetConsumerRiskReportResponse.md} +4 -4
- data/docs/InAppTransactionEvent.md +1 -1
- data/docs/RiskReportApi.md +165 -0
- data/docs/Transaction.md +1 -1
- data/docs/{UpdateSpendPowerCustomizationRequest.md → UpdateConsumerRiskReportCustomizationRequest.md} +5 -5
- data/docs/{UpdateSpendPowerCustomizationResponse.md → UpdateConsumerRiskReportCustomizationResponse.md} +2 -2
- data/docs/UpdatedBalanceEvent.md +2 -2
- data/fuse_client-1.0.37.gem +0 -0
- data/lib/fuse_client/api/fuse_api.rb +142 -139
- data/lib/fuse_client/api/{spend_power_api.rb → risk_report_api.rb} +39 -39
- data/lib/fuse_client/models/account_subtype.rb +3 -2
- data/lib/fuse_client/models/aggregator.rb +3 -1
- data/lib/fuse_client/models/{spend_power.rb → consumer_risk_report.rb} +4 -6
- data/lib/fuse_client/models/{spend_power_customization.rb → consumer_risk_report_customization.rb} +6 -7
- data/lib/fuse_client/models/{spend_power_time_frame.rb → consumer_risk_report_time_frame.rb} +3 -3
- data/lib/fuse_client/models/{create_spend_power_customization_request.rb → create_consumer_risk_report_customization_request.rb} +6 -6
- data/lib/fuse_client/models/{create_spend_power_customization_response.rb → create_consumer_risk_report_customization_response.rb} +3 -3
- data/lib/fuse_client/models/{create_spend_power_request.rb → create_consumer_risk_report_request.rb} +5 -5
- data/lib/fuse_client/models/{delete_spend_power_response.rb → create_consumer_risk_report_response.rb} +3 -4
- data/lib/fuse_client/models/{create_spend_power_response.rb → delete_consumer_risk_report_response.rb} +3 -4
- data/lib/fuse_client/models/{eval_spend_power_request.rb → eval_consumer_risk_report_request.rb} +5 -5
- data/lib/fuse_client/models/{eval_spend_power_request_events_inner.rb → eval_consumer_risk_report_request_events_inner.rb} +3 -3
- data/lib/fuse_client/models/{eval_spend_power_response.rb → eval_consumer_risk_report_response.rb} +3 -3
- data/lib/fuse_client/models/external_transaction_event.rb +1 -6
- data/lib/fuse_client/models/financial_connection_details.rb +22 -4
- data/lib/fuse_client/models/financial_connection_details_basiq.rb +241 -0
- data/lib/fuse_client/models/financial_connection_details_belvo.rb +236 -0
- data/lib/fuse_client/models/financial_connections_investment_security_exchange.rb +14 -4
- data/lib/fuse_client/models/financial_connections_owner_addresses_inner_data.rb +11 -1
- data/lib/fuse_client/models/fuse_api_error_code.rb +6 -3
- data/lib/fuse_client/models/get_consumer_risk_report_customization_response.rb +239 -0
- data/lib/fuse_client/models/{get_spend_power_response.rb → get_consumer_risk_report_response.rb} +13 -13
- data/lib/fuse_client/models/in_app_transaction_event.rb +0 -5
- data/lib/fuse_client/models/transaction.rb +1 -1
- data/lib/fuse_client/models/{update_spend_power_customization_request.rb → update_consumer_risk_report_customization_request.rb} +6 -6
- data/lib/fuse_client/models/{update_spend_power_customization_response.rb → update_consumer_risk_report_customization_response.rb} +3 -3
- data/lib/fuse_client/models/updated_balance_event.rb +2 -2
- data/lib/fuse_client/version.rb +1 -1
- data/lib/fuse_client.rb +18 -16
- data/spec/api/fuse_api_spec.rb +37 -36
- data/spec/api/{spend_power_api_spec.rb → risk_report_api_spec.rb} +16 -16
- data/spec/models/{spend_power_customization_spec.rb → consumer_risk_report_customization_spec.rb} +6 -6
- data/spec/models/{spend_power_spec.rb → consumer_risk_report_spec.rb} +6 -6
- data/spec/models/{spend_power_time_frame_spec.rb → consumer_risk_report_time_frame_spec.rb} +6 -6
- data/spec/models/{create_spend_power_customization_request_spec.rb → create_consumer_risk_report_customization_request_spec.rb} +6 -6
- data/spec/models/{create_spend_power_customization_response_spec.rb → create_consumer_risk_report_customization_response_spec.rb} +6 -6
- data/spec/models/{create_spend_power_request_spec.rb → create_consumer_risk_report_request_spec.rb} +6 -6
- data/spec/models/{delete_spend_power_response_spec.rb → create_consumer_risk_report_response_spec.rb} +6 -6
- data/spec/models/{create_spend_power_response_spec.rb → delete_consumer_risk_report_response_spec.rb} +6 -6
- data/spec/models/{eval_spend_power_request_events_inner_spec.rb → eval_consumer_risk_report_request_events_inner_spec.rb} +6 -6
- data/spec/models/{eval_spend_power_request_spec.rb → eval_consumer_risk_report_request_spec.rb} +6 -6
- data/spec/models/{eval_spend_power_response_spec.rb → eval_consumer_risk_report_response_spec.rb} +6 -6
- data/spec/models/financial_connection_details_basiq_spec.rb +40 -0
- data/spec/models/financial_connection_details_belvo_spec.rb +40 -0
- data/spec/models/financial_connection_details_spec.rb +12 -0
- data/spec/models/financial_connections_investment_security_exchange_spec.rb +6 -0
- data/spec/models/financial_connections_owner_addresses_inner_data_spec.rb +6 -0
- data/spec/models/{get_spend_power_customization_response_spec.rb → get_consumer_risk_report_customization_response_spec.rb} +7 -7
- data/spec/models/{get_spend_power_response_spec.rb → get_consumer_risk_report_response_spec.rb} +7 -7
- data/spec/models/{update_spend_power_customization_request_spec.rb → update_consumer_risk_report_customization_request_spec.rb} +6 -6
- data/spec/models/{update_spend_power_customization_response_spec.rb → update_consumer_risk_report_customization_response_spec.rb} +6 -6
- metadata +74 -65
- data/docs/EvalSpendPowerRequest.md +0 -22
- data/docs/SpendPowerApi.md +0 -165
- data/lib/fuse_client/models/get_spend_power_customization_response.rb +0 -239
@@ -0,0 +1,239 @@
|
|
1
|
+
=begin
|
2
|
+
#Fuse
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 6.6.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'date'
|
14
|
+
require 'time'
|
15
|
+
|
16
|
+
module FuseClient
|
17
|
+
class GetConsumerRiskReportCustomizationResponse
|
18
|
+
attr_accessor :consumer_risk_report_customization
|
19
|
+
|
20
|
+
# An identifier that is exclusive to the request and can serve as a means for investigating and resolving issues.
|
21
|
+
attr_accessor :request_id
|
22
|
+
|
23
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
24
|
+
def self.attribute_map
|
25
|
+
{
|
26
|
+
:'consumer_risk_report_customization' => :'consumer_risk_report_customization',
|
27
|
+
:'request_id' => :'request_id'
|
28
|
+
}
|
29
|
+
end
|
30
|
+
|
31
|
+
# Returns all the JSON keys this model knows about
|
32
|
+
def self.acceptable_attributes
|
33
|
+
attribute_map.values
|
34
|
+
end
|
35
|
+
|
36
|
+
# Attribute type mapping.
|
37
|
+
def self.openapi_types
|
38
|
+
{
|
39
|
+
:'consumer_risk_report_customization' => :'ConsumerRiskReportCustomization',
|
40
|
+
:'request_id' => :'String'
|
41
|
+
}
|
42
|
+
end
|
43
|
+
|
44
|
+
# List of attributes with nullable: true
|
45
|
+
def self.openapi_nullable
|
46
|
+
Set.new([
|
47
|
+
])
|
48
|
+
end
|
49
|
+
|
50
|
+
# Initializes the object
|
51
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
52
|
+
def initialize(attributes = {})
|
53
|
+
if (!attributes.is_a?(Hash))
|
54
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `FuseClient::GetConsumerRiskReportCustomizationResponse` initialize method"
|
55
|
+
end
|
56
|
+
|
57
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
58
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
59
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
60
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `FuseClient::GetConsumerRiskReportCustomizationResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
61
|
+
end
|
62
|
+
h[k.to_sym] = v
|
63
|
+
}
|
64
|
+
|
65
|
+
if attributes.key?(:'consumer_risk_report_customization')
|
66
|
+
self.consumer_risk_report_customization = attributes[:'consumer_risk_report_customization']
|
67
|
+
end
|
68
|
+
|
69
|
+
if attributes.key?(:'request_id')
|
70
|
+
self.request_id = attributes[:'request_id']
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
75
|
+
# @return Array for valid properties with the reasons
|
76
|
+
def list_invalid_properties
|
77
|
+
invalid_properties = Array.new
|
78
|
+
if @consumer_risk_report_customization.nil?
|
79
|
+
invalid_properties.push('invalid value for "consumer_risk_report_customization", consumer_risk_report_customization cannot be nil.')
|
80
|
+
end
|
81
|
+
|
82
|
+
if @request_id.nil?
|
83
|
+
invalid_properties.push('invalid value for "request_id", request_id cannot be nil.')
|
84
|
+
end
|
85
|
+
|
86
|
+
invalid_properties
|
87
|
+
end
|
88
|
+
|
89
|
+
# Check to see if the all the properties in the model are valid
|
90
|
+
# @return true if the model is valid
|
91
|
+
def valid?
|
92
|
+
return false if @consumer_risk_report_customization.nil?
|
93
|
+
return false if @request_id.nil?
|
94
|
+
true
|
95
|
+
end
|
96
|
+
|
97
|
+
# Checks equality by comparing each attribute.
|
98
|
+
# @param [Object] Object to be compared
|
99
|
+
def ==(o)
|
100
|
+
return true if self.equal?(o)
|
101
|
+
self.class == o.class &&
|
102
|
+
consumer_risk_report_customization == o.consumer_risk_report_customization &&
|
103
|
+
request_id == o.request_id
|
104
|
+
end
|
105
|
+
|
106
|
+
# @see the `==` method
|
107
|
+
# @param [Object] Object to be compared
|
108
|
+
def eql?(o)
|
109
|
+
self == o
|
110
|
+
end
|
111
|
+
|
112
|
+
# Calculates hash code according to all attributes.
|
113
|
+
# @return [Integer] Hash code
|
114
|
+
def hash
|
115
|
+
[consumer_risk_report_customization, request_id].hash
|
116
|
+
end
|
117
|
+
|
118
|
+
# Builds the object from hash
|
119
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
120
|
+
# @return [Object] Returns the model itself
|
121
|
+
def self.build_from_hash(attributes)
|
122
|
+
new.build_from_hash(attributes)
|
123
|
+
end
|
124
|
+
|
125
|
+
# Builds the object from hash
|
126
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
127
|
+
# @return [Object] Returns the model itself
|
128
|
+
def build_from_hash(attributes)
|
129
|
+
return nil unless attributes.is_a?(Hash)
|
130
|
+
attributes = attributes.transform_keys(&:to_sym)
|
131
|
+
self.class.openapi_types.each_pair do |key, type|
|
132
|
+
if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
133
|
+
self.send("#{key}=", nil)
|
134
|
+
elsif type =~ /\AArray<(.*)>/i
|
135
|
+
# check to ensure the input is an array given that the attribute
|
136
|
+
# is documented as an array but the input is not
|
137
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
138
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
139
|
+
end
|
140
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
141
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
self
|
146
|
+
end
|
147
|
+
|
148
|
+
# Deserializes the data based on type
|
149
|
+
# @param string type Data type
|
150
|
+
# @param string value Value to be deserialized
|
151
|
+
# @return [Object] Deserialized data
|
152
|
+
def _deserialize(type, value)
|
153
|
+
case type.to_sym
|
154
|
+
when :Time
|
155
|
+
Time.parse(value)
|
156
|
+
when :Date
|
157
|
+
Date.parse(value)
|
158
|
+
when :String
|
159
|
+
value.to_s
|
160
|
+
when :Integer
|
161
|
+
value.to_i
|
162
|
+
when :Float
|
163
|
+
value.to_f
|
164
|
+
when :Boolean
|
165
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
166
|
+
true
|
167
|
+
else
|
168
|
+
false
|
169
|
+
end
|
170
|
+
when :Object
|
171
|
+
# generic object (usually a Hash), return directly
|
172
|
+
value
|
173
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
174
|
+
inner_type = Regexp.last_match[:inner_type]
|
175
|
+
value.map { |v| _deserialize(inner_type, v) }
|
176
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
177
|
+
k_type = Regexp.last_match[:k_type]
|
178
|
+
v_type = Regexp.last_match[:v_type]
|
179
|
+
{}.tap do |hash|
|
180
|
+
value.each do |k, v|
|
181
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
182
|
+
end
|
183
|
+
end
|
184
|
+
else # model
|
185
|
+
# models (e.g. Pet) or oneOf
|
186
|
+
klass = FuseClient.const_get(type)
|
187
|
+
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
188
|
+
end
|
189
|
+
end
|
190
|
+
|
191
|
+
# Returns the string representation of the object
|
192
|
+
# @return [String] String presentation of the object
|
193
|
+
def to_s
|
194
|
+
to_hash.to_s
|
195
|
+
end
|
196
|
+
|
197
|
+
# to_body is an alias to to_hash (backward compatibility)
|
198
|
+
# @return [Hash] Returns the object in the form of hash
|
199
|
+
def to_body
|
200
|
+
to_hash
|
201
|
+
end
|
202
|
+
|
203
|
+
# Returns the object in the form of hash
|
204
|
+
# @return [Hash] Returns the object in the form of hash
|
205
|
+
def to_hash
|
206
|
+
hash = {}
|
207
|
+
self.class.attribute_map.each_pair do |attr, param|
|
208
|
+
value = self.send(attr)
|
209
|
+
if value.nil?
|
210
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
211
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
212
|
+
end
|
213
|
+
|
214
|
+
hash[param] = _to_hash(value)
|
215
|
+
end
|
216
|
+
hash
|
217
|
+
end
|
218
|
+
|
219
|
+
# Outputs non-array value in the form of hash
|
220
|
+
# For object, use to_hash. Otherwise, just return the value
|
221
|
+
# @param [Object] value Any valid value
|
222
|
+
# @return [Hash] Returns the value in the form of hash
|
223
|
+
def _to_hash(value)
|
224
|
+
if value.is_a?(Array)
|
225
|
+
value.compact.map { |v| _to_hash(v) }
|
226
|
+
elsif value.is_a?(Hash)
|
227
|
+
{}.tap do |hash|
|
228
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
229
|
+
end
|
230
|
+
elsif value.respond_to? :to_hash
|
231
|
+
value.to_hash
|
232
|
+
else
|
233
|
+
value
|
234
|
+
end
|
235
|
+
end
|
236
|
+
|
237
|
+
end
|
238
|
+
|
239
|
+
end
|
data/lib/fuse_client/models/{get_spend_power_response.rb → get_consumer_risk_report_response.rb}
RENAMED
@@ -14,8 +14,8 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module FuseClient
|
17
|
-
class
|
18
|
-
attr_accessor :
|
17
|
+
class GetConsumerRiskReportResponse
|
18
|
+
attr_accessor :consumer_risk_report
|
19
19
|
|
20
20
|
# An identifier that is exclusive to the request and can serve as a means for investigating and resolving issues.
|
21
21
|
attr_accessor :request_id
|
@@ -23,7 +23,7 @@ module FuseClient
|
|
23
23
|
# Attribute mapping from ruby-style variable name to JSON key.
|
24
24
|
def self.attribute_map
|
25
25
|
{
|
26
|
-
:'
|
26
|
+
:'consumer_risk_report' => :'consumer_risk_report',
|
27
27
|
:'request_id' => :'request_id'
|
28
28
|
}
|
29
29
|
end
|
@@ -36,7 +36,7 @@ module FuseClient
|
|
36
36
|
# Attribute type mapping.
|
37
37
|
def self.openapi_types
|
38
38
|
{
|
39
|
-
:'
|
39
|
+
:'consumer_risk_report' => :'ConsumerRiskReport',
|
40
40
|
:'request_id' => :'String'
|
41
41
|
}
|
42
42
|
end
|
@@ -51,19 +51,19 @@ module FuseClient
|
|
51
51
|
# @param [Hash] attributes Model attributes in the form of hash
|
52
52
|
def initialize(attributes = {})
|
53
53
|
if (!attributes.is_a?(Hash))
|
54
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `FuseClient::
|
54
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `FuseClient::GetConsumerRiskReportResponse` initialize method"
|
55
55
|
end
|
56
56
|
|
57
57
|
# check to see if the attribute exists and convert string to symbol for hash key
|
58
58
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
59
59
|
if (!self.class.attribute_map.key?(k.to_sym))
|
60
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `FuseClient::
|
60
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `FuseClient::GetConsumerRiskReportResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
61
61
|
end
|
62
62
|
h[k.to_sym] = v
|
63
63
|
}
|
64
64
|
|
65
|
-
if attributes.key?(:'
|
66
|
-
self.
|
65
|
+
if attributes.key?(:'consumer_risk_report')
|
66
|
+
self.consumer_risk_report = attributes[:'consumer_risk_report']
|
67
67
|
end
|
68
68
|
|
69
69
|
if attributes.key?(:'request_id')
|
@@ -75,8 +75,8 @@ module FuseClient
|
|
75
75
|
# @return Array for valid properties with the reasons
|
76
76
|
def list_invalid_properties
|
77
77
|
invalid_properties = Array.new
|
78
|
-
if @
|
79
|
-
invalid_properties.push('invalid value for "
|
78
|
+
if @consumer_risk_report.nil?
|
79
|
+
invalid_properties.push('invalid value for "consumer_risk_report", consumer_risk_report cannot be nil.')
|
80
80
|
end
|
81
81
|
|
82
82
|
if @request_id.nil?
|
@@ -89,7 +89,7 @@ module FuseClient
|
|
89
89
|
# Check to see if the all the properties in the model are valid
|
90
90
|
# @return true if the model is valid
|
91
91
|
def valid?
|
92
|
-
return false if @
|
92
|
+
return false if @consumer_risk_report.nil?
|
93
93
|
return false if @request_id.nil?
|
94
94
|
true
|
95
95
|
end
|
@@ -99,7 +99,7 @@ module FuseClient
|
|
99
99
|
def ==(o)
|
100
100
|
return true if self.equal?(o)
|
101
101
|
self.class == o.class &&
|
102
|
-
|
102
|
+
consumer_risk_report == o.consumer_risk_report &&
|
103
103
|
request_id == o.request_id
|
104
104
|
end
|
105
105
|
|
@@ -112,7 +112,7 @@ module FuseClient
|
|
112
112
|
# Calculates hash code according to all attributes.
|
113
113
|
# @return [Integer] Hash code
|
114
114
|
def hash
|
115
|
-
[
|
115
|
+
[consumer_risk_report, request_id].hash
|
116
116
|
end
|
117
117
|
|
118
118
|
# Builds the object from hash
|
@@ -176,10 +176,6 @@ module FuseClient
|
|
176
176
|
invalid_properties.push('invalid value for "iso_currency_code", iso_currency_code cannot be nil.')
|
177
177
|
end
|
178
178
|
|
179
|
-
if @transaction_type.nil?
|
180
|
-
invalid_properties.push('invalid value for "transaction_type", transaction_type cannot be nil.')
|
181
|
-
end
|
182
|
-
|
183
179
|
if @merchant_name.nil?
|
184
180
|
invalid_properties.push('invalid value for "merchant_name", merchant_name cannot be nil.')
|
185
181
|
end
|
@@ -201,7 +197,6 @@ module FuseClient
|
|
201
197
|
return false if @status.nil?
|
202
198
|
return false if @amount.nil?
|
203
199
|
return false if @iso_currency_code.nil?
|
204
|
-
return false if @transaction_type.nil?
|
205
200
|
return false if @merchant_name.nil?
|
206
201
|
return false if @timestamp.nil?
|
207
202
|
true
|
@@ -33,7 +33,7 @@ module FuseClient
|
|
33
33
|
# Description of the transaction
|
34
34
|
attr_accessor :description
|
35
35
|
|
36
|
-
# Categories of the transaction,
|
36
|
+
# Categories of the transaction, i.e., Computers and Electronics. You can download the categories from [here](https://fuse-public-bucket.s3.amazonaws.com/transaction-categories.csv)
|
37
37
|
attr_accessor :category
|
38
38
|
|
39
39
|
attr_accessor :merchant
|
@@ -14,13 +14,13 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module FuseClient
|
17
|
-
class
|
17
|
+
class UpdateConsumerRiskReportCustomizationRequest
|
18
18
|
attr_accessor :timeframe
|
19
19
|
|
20
|
-
# The minimum allowed limit
|
20
|
+
# The minimum allowed limit, in cents.
|
21
21
|
attr_accessor :min_limit
|
22
22
|
|
23
|
-
# The maximum allowed limit
|
23
|
+
# The maximum allowed limit, in cents.
|
24
24
|
attr_accessor :max_limit
|
25
25
|
|
26
26
|
# 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.
|
@@ -66,7 +66,7 @@ module FuseClient
|
|
66
66
|
# Attribute type mapping.
|
67
67
|
def self.openapi_types
|
68
68
|
{
|
69
|
-
:'timeframe' => :'
|
69
|
+
:'timeframe' => :'ConsumerRiskReportTimeFrame',
|
70
70
|
:'min_limit' => :'Float',
|
71
71
|
:'max_limit' => :'Float',
|
72
72
|
:'risk_tolerance' => :'Float'
|
@@ -83,13 +83,13 @@ module FuseClient
|
|
83
83
|
# @param [Hash] attributes Model attributes in the form of hash
|
84
84
|
def initialize(attributes = {})
|
85
85
|
if (!attributes.is_a?(Hash))
|
86
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `FuseClient::
|
86
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `FuseClient::UpdateConsumerRiskReportCustomizationRequest` initialize method"
|
87
87
|
end
|
88
88
|
|
89
89
|
# check to see if the attribute exists and convert string to symbol for hash key
|
90
90
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
91
91
|
if (!self.class.attribute_map.key?(k.to_sym))
|
92
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `FuseClient::
|
92
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `FuseClient::UpdateConsumerRiskReportCustomizationRequest`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
93
93
|
end
|
94
94
|
h[k.to_sym] = v
|
95
95
|
}
|
@@ -14,7 +14,7 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module FuseClient
|
17
|
-
class
|
17
|
+
class UpdateConsumerRiskReportCustomizationResponse
|
18
18
|
# The id of the updated customization.
|
19
19
|
attr_accessor :id
|
20
20
|
|
@@ -52,13 +52,13 @@ module FuseClient
|
|
52
52
|
# @param [Hash] attributes Model attributes in the form of hash
|
53
53
|
def initialize(attributes = {})
|
54
54
|
if (!attributes.is_a?(Hash))
|
55
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `FuseClient::
|
55
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `FuseClient::UpdateConsumerRiskReportCustomizationResponse` initialize method"
|
56
56
|
end
|
57
57
|
|
58
58
|
# check to see if the attribute exists and convert string to symbol for hash key
|
59
59
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
60
60
|
if (!self.class.attribute_map.key?(k.to_sym))
|
61
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `FuseClient::
|
61
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `FuseClient::UpdateConsumerRiskReportCustomizationResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
62
62
|
end
|
63
63
|
h[k.to_sym] = v
|
64
64
|
}
|
@@ -23,10 +23,10 @@ module FuseClient
|
|
23
23
|
# Datetime that the balance is accurate for In ISO-8601 format
|
24
24
|
attr_accessor :timestamp
|
25
25
|
|
26
|
-
# The current balance of the account factoring in pending transactions.
|
26
|
+
# The current balance of the account factoring in pending transactions.
|
27
27
|
attr_accessor :available
|
28
28
|
|
29
|
-
# The current balance of the account without factoring in pending transactions.
|
29
|
+
# The current balance of the account without factoring in pending transactions.
|
30
30
|
attr_accessor :current
|
31
31
|
|
32
32
|
class EnumAttributeValidator
|
data/lib/fuse_client/version.rb
CHANGED
data/lib/fuse_client.rb
CHANGED
@@ -29,9 +29,16 @@ require 'fuse_client/models/asset_report_accounts_inner_balance'
|
|
29
29
|
require 'fuse_client/models/asset_report_accounts_inner_historical_balances_inner'
|
30
30
|
require 'fuse_client/models/asset_report_response'
|
31
31
|
require 'fuse_client/models/asset_report_transaction'
|
32
|
+
require 'fuse_client/models/consumer_risk_report'
|
33
|
+
require 'fuse_client/models/consumer_risk_report_customization'
|
34
|
+
require 'fuse_client/models/consumer_risk_report_time_frame'
|
32
35
|
require 'fuse_client/models/country_code'
|
33
36
|
require 'fuse_client/models/create_asset_report_request'
|
34
37
|
require 'fuse_client/models/create_asset_report_response'
|
38
|
+
require 'fuse_client/models/create_consumer_risk_report_customization_request'
|
39
|
+
require 'fuse_client/models/create_consumer_risk_report_customization_response'
|
40
|
+
require 'fuse_client/models/create_consumer_risk_report_request'
|
41
|
+
require 'fuse_client/models/create_consumer_risk_report_response'
|
35
42
|
require 'fuse_client/models/create_entity_request'
|
36
43
|
require 'fuse_client/models/create_entity_response'
|
37
44
|
require 'fuse_client/models/create_link_token_request'
|
@@ -47,20 +54,16 @@ require 'fuse_client/models/create_link_token_request_teller_config_account_filt
|
|
47
54
|
require 'fuse_client/models/create_link_token_response'
|
48
55
|
require 'fuse_client/models/create_session_request'
|
49
56
|
require 'fuse_client/models/create_session_response'
|
50
|
-
require 'fuse_client/models/create_spend_power_customization_request'
|
51
|
-
require 'fuse_client/models/create_spend_power_customization_response'
|
52
|
-
require 'fuse_client/models/create_spend_power_request'
|
53
|
-
require 'fuse_client/models/create_spend_power_response'
|
54
57
|
require 'fuse_client/models/currency'
|
58
|
+
require 'fuse_client/models/delete_consumer_risk_report_response'
|
55
59
|
require 'fuse_client/models/delete_financial_connection_response'
|
56
|
-
require 'fuse_client/models/delete_spend_power_response'
|
57
60
|
require 'fuse_client/models/enrich_transactions_request'
|
58
61
|
require 'fuse_client/models/enrich_transactions_response'
|
59
62
|
require 'fuse_client/models/enriched_transaction'
|
60
63
|
require 'fuse_client/models/entity'
|
61
|
-
require 'fuse_client/models/
|
62
|
-
require 'fuse_client/models/
|
63
|
-
require 'fuse_client/models/
|
64
|
+
require 'fuse_client/models/eval_consumer_risk_report_request'
|
65
|
+
require 'fuse_client/models/eval_consumer_risk_report_request_events_inner'
|
66
|
+
require 'fuse_client/models/eval_consumer_risk_report_response'
|
64
67
|
require 'fuse_client/models/exchange_financial_connections_public_token_request'
|
65
68
|
require 'fuse_client/models/exchange_financial_connections_public_token_response'
|
66
69
|
require 'fuse_client/models/external_transaction_event'
|
@@ -88,6 +91,8 @@ require 'fuse_client/models/fin_ql_top_merchants_feature_inner'
|
|
88
91
|
require 'fuse_client/models/finance_score'
|
89
92
|
require 'fuse_client/models/financial_connection_data'
|
90
93
|
require 'fuse_client/models/financial_connection_details'
|
94
|
+
require 'fuse_client/models/financial_connection_details_basiq'
|
95
|
+
require 'fuse_client/models/financial_connection_details_belvo'
|
91
96
|
require 'fuse_client/models/financial_connection_details_finverse'
|
92
97
|
require 'fuse_client/models/financial_connection_details_flinks'
|
93
98
|
require 'fuse_client/models/financial_connection_details_mono'
|
@@ -129,6 +134,8 @@ require 'fuse_client/models/fuse_api_warning'
|
|
129
134
|
require 'fuse_client/models/fuse_api_warning_data'
|
130
135
|
require 'fuse_client/models/fuse_api_warning_data_warnings_inner'
|
131
136
|
require 'fuse_client/models/get_asset_report_request'
|
137
|
+
require 'fuse_client/models/get_consumer_risk_report_customization_response'
|
138
|
+
require 'fuse_client/models/get_consumer_risk_report_response'
|
132
139
|
require 'fuse_client/models/get_entity_response'
|
133
140
|
require 'fuse_client/models/get_finance_score_response'
|
134
141
|
require 'fuse_client/models/get_financial_connection_response'
|
@@ -155,8 +162,6 @@ require 'fuse_client/models/get_investment_transactions_request_options'
|
|
155
162
|
require 'fuse_client/models/get_investment_transactions_response'
|
156
163
|
require 'fuse_client/models/get_liabilities_request'
|
157
164
|
require 'fuse_client/models/get_liabilities_response'
|
158
|
-
require 'fuse_client/models/get_spend_power_customization_response'
|
159
|
-
require 'fuse_client/models/get_spend_power_response'
|
160
165
|
require 'fuse_client/models/in_app_transaction_event'
|
161
166
|
require 'fuse_client/models/in_app_transaction_event_status'
|
162
167
|
require 'fuse_client/models/merchant'
|
@@ -171,9 +176,6 @@ require 'fuse_client/models/migrate_financial_connections_token_response'
|
|
171
176
|
require 'fuse_client/models/product'
|
172
177
|
require 'fuse_client/models/refresh_asset_report_request'
|
173
178
|
require 'fuse_client/models/refresh_asset_report_response'
|
174
|
-
require 'fuse_client/models/spend_power'
|
175
|
-
require 'fuse_client/models/spend_power_customization'
|
176
|
-
require 'fuse_client/models/spend_power_time_frame'
|
177
179
|
require 'fuse_client/models/sync_financial_connections_data_response'
|
178
180
|
require 'fuse_client/models/sync_transactions_request'
|
179
181
|
require 'fuse_client/models/sync_transactions_response'
|
@@ -185,10 +187,10 @@ require 'fuse_client/models/transaction_category_primary'
|
|
185
187
|
require 'fuse_client/models/transaction_event_type'
|
186
188
|
require 'fuse_client/models/transaction_merchant'
|
187
189
|
require 'fuse_client/models/transaction_to_enrich'
|
190
|
+
require 'fuse_client/models/update_consumer_risk_report_customization_request'
|
191
|
+
require 'fuse_client/models/update_consumer_risk_report_customization_response'
|
188
192
|
require 'fuse_client/models/update_entity_request'
|
189
193
|
require 'fuse_client/models/update_entity_response'
|
190
|
-
require 'fuse_client/models/update_spend_power_customization_request'
|
191
|
-
require 'fuse_client/models/update_spend_power_customization_response'
|
192
194
|
require 'fuse_client/models/updated_balance_event'
|
193
195
|
require 'fuse_client/models/webhook_event'
|
194
196
|
require 'fuse_client/models/webhook_source'
|
@@ -196,7 +198,7 @@ require 'fuse_client/models/webhook_type'
|
|
196
198
|
|
197
199
|
# APIs
|
198
200
|
require 'fuse_client/api/fuse_api'
|
199
|
-
require 'fuse_client/api/
|
201
|
+
require 'fuse_client/api/risk_report_api'
|
200
202
|
|
201
203
|
module FuseClient
|
202
204
|
class << self
|
data/spec/api/fuse_api_spec.rb
CHANGED
@@ -54,44 +54,44 @@ describe 'FuseApi' do
|
|
54
54
|
end
|
55
55
|
end
|
56
56
|
|
57
|
-
# unit tests for
|
58
|
-
#
|
57
|
+
# unit tests for create_consumer_risk_report
|
58
|
+
# Starts the background process that will calculate the consumer risk report depending on the customization passed in.
|
59
59
|
# @param [Hash] opts the optional parameters
|
60
|
-
# @option opts [
|
61
|
-
# @return [
|
62
|
-
describe '
|
60
|
+
# @option opts [CreateConsumerRiskReportRequest] :create_consumer_risk_report_request
|
61
|
+
# @return [CreateConsumerRiskReportResponse]
|
62
|
+
describe 'create_consumer_risk_report test' do
|
63
63
|
it 'should work' do
|
64
64
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
65
65
|
end
|
66
66
|
end
|
67
67
|
|
68
|
-
# unit tests for
|
69
|
-
# Creates a session that returns a client_secret which is required as a parameter when initializing the Fuse SDK.
|
68
|
+
# unit tests for create_consumer_risk_report_customization
|
70
69
|
# @param [Hash] opts the optional parameters
|
71
|
-
# @option opts [
|
72
|
-
# @return [
|
73
|
-
describe '
|
70
|
+
# @option opts [CreateConsumerRiskReportCustomizationRequest] :create_consumer_risk_report_customization_request
|
71
|
+
# @return [CreateConsumerRiskReportCustomizationResponse]
|
72
|
+
describe 'create_consumer_risk_report_customization test' do
|
74
73
|
it 'should work' do
|
75
74
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
76
75
|
end
|
77
76
|
end
|
78
77
|
|
79
|
-
# unit tests for
|
80
|
-
#
|
78
|
+
# unit tests for create_link_token
|
79
|
+
# Create a link token to start the process of a user connecting to a specific financial institution.
|
81
80
|
# @param [Hash] opts the optional parameters
|
82
|
-
# @option opts [
|
83
|
-
# @return [
|
84
|
-
describe '
|
81
|
+
# @option opts [CreateLinkTokenRequest] :create_link_token_request
|
82
|
+
# @return [CreateLinkTokenResponse]
|
83
|
+
describe 'create_link_token test' do
|
85
84
|
it 'should work' do
|
86
85
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
87
86
|
end
|
88
87
|
end
|
89
88
|
|
90
|
-
# unit tests for
|
89
|
+
# unit tests for create_session
|
90
|
+
# Creates a session that returns a client_secret which is required as a parameter when initializing the Fuse SDK.
|
91
91
|
# @param [Hash] opts the optional parameters
|
92
|
-
# @option opts [
|
93
|
-
# @return [
|
94
|
-
describe '
|
92
|
+
# @option opts [CreateSessionRequest] :create_session_request
|
93
|
+
# @return [CreateSessionResponse]
|
94
|
+
describe 'create_session test' do
|
95
95
|
it 'should work' do
|
96
96
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
97
97
|
end
|
@@ -154,6 +154,18 @@ describe 'FuseApi' do
|
|
154
154
|
end
|
155
155
|
end
|
156
156
|
|
157
|
+
# unit tests for get_consumer_risk_report
|
158
|
+
# Get consumer risk report
|
159
|
+
# @param consumer_risk_report_id
|
160
|
+
# @param [Hash] opts the optional parameters
|
161
|
+
# @option opts [Boolean] :recalculate An optional boolean parameter. If set to true, the system will recalculate before returning the risk report. If omitted or set to false, the current risk report will be returned without recalculation.
|
162
|
+
# @return [GetConsumerRiskReportResponse]
|
163
|
+
describe 'get_consumer_risk_report test' do
|
164
|
+
it 'should work' do
|
165
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
166
|
+
end
|
167
|
+
end
|
168
|
+
|
157
169
|
# unit tests for get_entity
|
158
170
|
# Get entity
|
159
171
|
# An entity is automatically created after a successful connection. The id of the entity is what is set when calling the 'create session' endpoint
|
@@ -288,17 +300,6 @@ describe 'FuseApi' do
|
|
288
300
|
end
|
289
301
|
end
|
290
302
|
|
291
|
-
# unit tests for get_spend_power
|
292
|
-
# Get spend power
|
293
|
-
# @param spend_power_id
|
294
|
-
# @param [Hash] opts the optional parameters
|
295
|
-
# @return [GetSpendPowerResponse]
|
296
|
-
describe 'get_spend_power test' do
|
297
|
-
it 'should work' do
|
298
|
-
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
299
|
-
end
|
300
|
-
end
|
301
|
-
|
302
303
|
# unit tests for migrate_financial_connection
|
303
304
|
# Migrate financial connection
|
304
305
|
# This endpoint migrates financial connections from Plaid or MX into the unified Fuse API. It accepts a POST request with connection data, aggregator, entity, and Fuse products, and responds with a JSON payload containing the migrated connection's data, access token, ID, and request ID.
|
@@ -334,13 +335,13 @@ describe 'FuseApi' do
|
|
334
335
|
end
|
335
336
|
end
|
336
337
|
|
337
|
-
# unit tests for
|
338
|
-
# Update
|
339
|
-
# @param
|
338
|
+
# unit tests for update_consumer_risk_report_customization
|
339
|
+
# Update consumer risk report customization
|
340
|
+
# @param consumer_risk_report_customization_id
|
340
341
|
# @param [Hash] opts the optional parameters
|
341
|
-
# @option opts [
|
342
|
-
# @return [
|
343
|
-
describe '
|
342
|
+
# @option opts [UpdateConsumerRiskReportCustomizationRequest] :update_consumer_risk_report_customization_request
|
343
|
+
# @return [UpdateConsumerRiskReportCustomizationResponse]
|
344
|
+
describe 'update_consumer_risk_report_customization test' do
|
344
345
|
it 'should work' do
|
345
346
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
346
347
|
end
|