atrium-ruby 2.8.5 → 2.10.3
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/README.md +10 -2
- data/docs/Account.md +3 -0
- data/docs/AccountNumber.md +2 -0
- data/docs/ConnectWidgetRequestBody.md +4 -0
- data/docs/Member.md +1 -0
- data/docs/MemberCreateRequest.md +4 -1
- data/docs/MembersApi.md +44 -0
- data/docs/MerchantLocation.md +17 -0
- data/docs/MerchantLocationResponseBody.md +8 -0
- data/docs/MerchantLocationsResponseBody.md +9 -0
- data/docs/MerchantsApi.md +107 -2
- data/docs/MerchantsResponseBody.md +9 -0
- data/docs/Transaction.md +1 -0
- data/lib/atrium-ruby.rb +4 -0
- data/lib/atrium-ruby/api/members_api.rb +64 -0
- data/lib/atrium-ruby/api/merchants_api.rb +156 -0
- data/lib/atrium-ruby/models/account.rb +28 -1
- data/lib/atrium-ruby/models/account_number.rb +19 -1
- data/lib/atrium-ruby/models/connect_widget_request_body.rb +40 -4
- data/lib/atrium-ruby/models/member.rb +10 -1
- data/lib/atrium-ruby/models/member_create_request.rb +31 -9
- data/lib/atrium-ruby/models/merchant_location.rb +260 -0
- data/lib/atrium-ruby/models/merchant_location_response_body.rb +179 -0
- data/lib/atrium-ruby/models/merchant_locations_response_body.rb +190 -0
- data/lib/atrium-ruby/models/merchants_response_body.rb +190 -0
- data/lib/atrium-ruby/models/transaction.rb +10 -1
- data/lib/atrium-ruby/version.rb +1 -1
- data/spec/api/members_api_spec.rb +15 -0
- data/spec/api/merchants_api_spec.rb +36 -0
- data/spec/models/account_number_spec.rb +12 -0
- data/spec/models/account_spec.rb +18 -0
- data/spec/models/connect_widget_request_body_spec.rb +24 -0
- data/spec/models/member_create_request_spec.rb +18 -0
- data/spec/models/member_spec.rb +6 -0
- data/spec/models/merchant_location_response_body_spec.rb +36 -0
- data/spec/models/merchant_location_spec.rb +90 -0
- data/spec/models/merchant_locations_response_body_spec.rb +42 -0
- data/spec/models/merchants_response_body_spec.rb +42 -0
- data/spec/models/transaction_spec.rb +6 -0
- metadata +52 -37
@@ -15,6 +15,25 @@ module Atrium
|
|
15
15
|
def initialize(api_client = ApiClient.default)
|
16
16
|
@api_client = api_client
|
17
17
|
end
|
18
|
+
# List merchant locations
|
19
|
+
# Returns a list of all the merchant locations associated with a merchant, including physical location, latitude, longitude, etc.
|
20
|
+
# @param merchant_guid The unique identifier for a `merchant`.
|
21
|
+
# @param [Hash] opts the optional parameters
|
22
|
+
# @return [MerchantLocationsResponseBody]
|
23
|
+
def list_merchant_locations(merchant_guid, opts = {})
|
24
|
+
data, _status_code, _headers = list_merchant_locations_with_http_info(merchant_guid, opts)
|
25
|
+
data
|
26
|
+
end
|
27
|
+
|
28
|
+
# List merchants
|
29
|
+
# Returns a list of merchnants.
|
30
|
+
# @param [Hash] opts the optional parameters
|
31
|
+
# @return [MerchantsResponseBody]
|
32
|
+
def list_merchants(opts = {})
|
33
|
+
data, _status_code, _headers = list_merchants_with_http_info(opts)
|
34
|
+
data
|
35
|
+
end
|
36
|
+
|
18
37
|
# Read merchant
|
19
38
|
# Returns information about a particular merchant, such as a logo, name, and website.
|
20
39
|
# @param merchant_guid The unique identifier for a `merchant`.
|
@@ -25,9 +44,99 @@ module Atrium
|
|
25
44
|
data
|
26
45
|
end
|
27
46
|
|
47
|
+
# Read merchant location
|
48
|
+
# Retuns a specific location associated with a merchant, including physical location, latitude, longitude, etc.
|
49
|
+
# @param merchant_guid The unique identifier for a `merchant`.
|
50
|
+
# @param merchant_location_guid The unique identifier for a `merchant_location`.
|
51
|
+
# @param [Hash] opts the optional parameters
|
52
|
+
# @return [MerchantLocationResponseBody]
|
53
|
+
def read_merchant_location(merchant_guid, merchant_location_guid, opts = {})
|
54
|
+
data, _status_code, _headers = read_merchant_location_with_http_info(merchant_guid, merchant_location_guid, opts)
|
55
|
+
data
|
56
|
+
end
|
57
|
+
|
28
58
|
|
29
59
|
private
|
30
60
|
|
61
|
+
# List merchant locations
|
62
|
+
# Returns a list of all the merchant locations associated with a merchant, including physical location, latitude, longitude, etc.
|
63
|
+
# @param merchant_guid The unique identifier for a `merchant`.
|
64
|
+
# @param [Hash] opts the optional parameters
|
65
|
+
# @return [Array<(MerchantLocationsResponseBody, Fixnum, Hash)>] MerchantLocationsResponseBody data, response status code and response headers
|
66
|
+
def list_merchant_locations_with_http_info(merchant_guid, opts = {})
|
67
|
+
if @api_client.config.debugging
|
68
|
+
@api_client.config.logger.debug 'Calling API: MerchantsApi.list_merchant_locations ...'
|
69
|
+
end
|
70
|
+
# verify the required parameter 'merchant_guid' is set
|
71
|
+
if @api_client.config.client_side_validation && merchant_guid.nil?
|
72
|
+
fail ArgumentError, "Missing the required parameter 'merchant_guid' when calling MerchantsApi.list_merchant_locations"
|
73
|
+
end
|
74
|
+
# resource path
|
75
|
+
local_var_path = '/merchants/{merchant_guid}/merchant_locations'.sub('{' + 'merchant_guid' + '}', merchant_guid.to_s)
|
76
|
+
|
77
|
+
# query parameters
|
78
|
+
query_params = {}
|
79
|
+
|
80
|
+
# header parameters
|
81
|
+
header_params = {}
|
82
|
+
# HTTP header 'Accept' (if needed)
|
83
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/vnd.mx.atrium.v1+json'])
|
84
|
+
|
85
|
+
# form parameters
|
86
|
+
form_params = {}
|
87
|
+
|
88
|
+
# http body (model)
|
89
|
+
post_body = nil
|
90
|
+
auth_names = ['apiKey', 'clientID']
|
91
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
92
|
+
:header_params => header_params,
|
93
|
+
:query_params => query_params,
|
94
|
+
:form_params => form_params,
|
95
|
+
:body => post_body,
|
96
|
+
:auth_names => auth_names,
|
97
|
+
:return_type => 'MerchantLocationsResponseBody')
|
98
|
+
if @api_client.config.debugging
|
99
|
+
@api_client.config.logger.debug "API called: MerchantsApi#list_merchant_locations\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
100
|
+
end
|
101
|
+
return data, status_code, headers
|
102
|
+
end
|
103
|
+
# List merchants
|
104
|
+
# Returns a list of merchnants.
|
105
|
+
# @param [Hash] opts the optional parameters
|
106
|
+
# @return [Array<(MerchantsResponseBody, Fixnum, Hash)>] MerchantsResponseBody data, response status code and response headers
|
107
|
+
def list_merchants_with_http_info(opts = {})
|
108
|
+
if @api_client.config.debugging
|
109
|
+
@api_client.config.logger.debug 'Calling API: MerchantsApi.list_merchants ...'
|
110
|
+
end
|
111
|
+
# resource path
|
112
|
+
local_var_path = '/merchants'
|
113
|
+
|
114
|
+
# query parameters
|
115
|
+
query_params = {}
|
116
|
+
|
117
|
+
# header parameters
|
118
|
+
header_params = {}
|
119
|
+
# HTTP header 'Accept' (if needed)
|
120
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/vnd.mx.atrium.v1+json'])
|
121
|
+
|
122
|
+
# form parameters
|
123
|
+
form_params = {}
|
124
|
+
|
125
|
+
# http body (model)
|
126
|
+
post_body = nil
|
127
|
+
auth_names = ['apiKey', 'clientID']
|
128
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
129
|
+
:header_params => header_params,
|
130
|
+
:query_params => query_params,
|
131
|
+
:form_params => form_params,
|
132
|
+
:body => post_body,
|
133
|
+
:auth_names => auth_names,
|
134
|
+
:return_type => 'MerchantsResponseBody')
|
135
|
+
if @api_client.config.debugging
|
136
|
+
@api_client.config.logger.debug "API called: MerchantsApi#list_merchants\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
137
|
+
end
|
138
|
+
return data, status_code, headers
|
139
|
+
end
|
31
140
|
# Read merchant
|
32
141
|
# Returns information about a particular merchant, such as a logo, name, and website.
|
33
142
|
# @param merchant_guid The unique identifier for a `merchant`.
|
@@ -70,5 +179,52 @@ module Atrium
|
|
70
179
|
end
|
71
180
|
return data, status_code, headers
|
72
181
|
end
|
182
|
+
# Read merchant location
|
183
|
+
# Retuns a specific location associated with a merchant, including physical location, latitude, longitude, etc.
|
184
|
+
# @param merchant_guid The unique identifier for a `merchant`.
|
185
|
+
# @param merchant_location_guid The unique identifier for a `merchant_location`.
|
186
|
+
# @param [Hash] opts the optional parameters
|
187
|
+
# @return [Array<(MerchantLocationResponseBody, Fixnum, Hash)>] MerchantLocationResponseBody data, response status code and response headers
|
188
|
+
def read_merchant_location_with_http_info(merchant_guid, merchant_location_guid, opts = {})
|
189
|
+
if @api_client.config.debugging
|
190
|
+
@api_client.config.logger.debug 'Calling API: MerchantsApi.read_merchant_location ...'
|
191
|
+
end
|
192
|
+
# verify the required parameter 'merchant_guid' is set
|
193
|
+
if @api_client.config.client_side_validation && merchant_guid.nil?
|
194
|
+
fail ArgumentError, "Missing the required parameter 'merchant_guid' when calling MerchantsApi.read_merchant_location"
|
195
|
+
end
|
196
|
+
# verify the required parameter 'merchant_location_guid' is set
|
197
|
+
if @api_client.config.client_side_validation && merchant_location_guid.nil?
|
198
|
+
fail ArgumentError, "Missing the required parameter 'merchant_location_guid' when calling MerchantsApi.read_merchant_location"
|
199
|
+
end
|
200
|
+
# resource path
|
201
|
+
local_var_path = '/merchants/{merchant_guid}/merchant_locations/{merchant_location_guid}'.sub('{' + 'merchant_guid' + '}', merchant_guid.to_s).sub('{' + 'merchant_location_guid' + '}', merchant_location_guid.to_s)
|
202
|
+
|
203
|
+
# query parameters
|
204
|
+
query_params = {}
|
205
|
+
|
206
|
+
# header parameters
|
207
|
+
header_params = {}
|
208
|
+
# HTTP header 'Accept' (if needed)
|
209
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/vnd.mx.atrium.v1+json'])
|
210
|
+
|
211
|
+
# form parameters
|
212
|
+
form_params = {}
|
213
|
+
|
214
|
+
# http body (model)
|
215
|
+
post_body = nil
|
216
|
+
auth_names = ['apiKey', 'clientID']
|
217
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
218
|
+
:header_params => header_params,
|
219
|
+
:query_params => query_params,
|
220
|
+
:form_params => form_params,
|
221
|
+
:body => post_body,
|
222
|
+
:auth_names => auth_names,
|
223
|
+
:return_type => 'MerchantLocationResponseBody')
|
224
|
+
if @api_client.config.debugging
|
225
|
+
@api_client.config.logger.debug "API called: MerchantsApi#read_merchant_location\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
226
|
+
end
|
227
|
+
return data, status_code, headers
|
228
|
+
end
|
73
229
|
end
|
74
230
|
end
|
@@ -40,6 +40,8 @@ module Atrium
|
|
40
40
|
|
41
41
|
attr_accessor :holdings_value
|
42
42
|
|
43
|
+
attr_accessor :insured_name
|
44
|
+
|
43
45
|
attr_accessor :institution_code
|
44
46
|
|
45
47
|
attr_accessor :interest_rate
|
@@ -66,6 +68,10 @@ module Atrium
|
|
66
68
|
|
67
69
|
attr_accessor :payoff_balance
|
68
70
|
|
71
|
+
attr_accessor :pay_out_amount
|
72
|
+
|
73
|
+
attr_accessor :premium_amount
|
74
|
+
|
69
75
|
attr_accessor :started_on
|
70
76
|
|
71
77
|
attr_accessor :subtype
|
@@ -96,6 +102,7 @@ module Atrium
|
|
96
102
|
:'death_benefit' => :'death_benefit',
|
97
103
|
:'guid' => :'guid',
|
98
104
|
:'holdings_value' => :'holdings_value',
|
105
|
+
:'insured_name' => :'insured_name',
|
99
106
|
:'institution_code' => :'institution_code',
|
100
107
|
:'interest_rate' => :'interest_rate',
|
101
108
|
:'is_closed' => :'is_closed',
|
@@ -109,6 +116,8 @@ module Atrium
|
|
109
116
|
:'original_balance' => :'original_balance',
|
110
117
|
:'payment_due_at' => :'payment_due_at',
|
111
118
|
:'payoff_balance' => :'payoff_balance',
|
119
|
+
:'pay_out_amount' => :'pay_out_amount',
|
120
|
+
:'premium_amount' => :'premium_amount',
|
112
121
|
:'started_on' => :'started_on',
|
113
122
|
:'subtype' => :'subtype',
|
114
123
|
:'total_account_value' => :'total_account_value',
|
@@ -136,6 +145,7 @@ module Atrium
|
|
136
145
|
:'death_benefit' => :'Float',
|
137
146
|
:'guid' => :'String',
|
138
147
|
:'holdings_value' => :'Float',
|
148
|
+
:'insured_name' => :'String',
|
139
149
|
:'institution_code' => :'String',
|
140
150
|
:'interest_rate' => :'Float',
|
141
151
|
:'is_closed' => :'BOOLEAN',
|
@@ -149,6 +159,8 @@ module Atrium
|
|
149
159
|
:'original_balance' => :'Float',
|
150
160
|
:'payment_due_at' => :'String',
|
151
161
|
:'payoff_balance' => :'Float',
|
162
|
+
:'pay_out_amount' => :'Float',
|
163
|
+
:'premium_amount' => :'Float',
|
152
164
|
:'started_on' => :'String',
|
153
165
|
:'subtype' => :'String',
|
154
166
|
:'total_account_value' => :'Float',
|
@@ -226,6 +238,10 @@ module Atrium
|
|
226
238
|
self.holdings_value = attributes[:'holdings_value']
|
227
239
|
end
|
228
240
|
|
241
|
+
if attributes.has_key?(:'insured_name')
|
242
|
+
self.insured_name = attributes[:'insured_name']
|
243
|
+
end
|
244
|
+
|
229
245
|
if attributes.has_key?(:'institution_code')
|
230
246
|
self.institution_code = attributes[:'institution_code']
|
231
247
|
end
|
@@ -278,6 +294,14 @@ module Atrium
|
|
278
294
|
self.payoff_balance = attributes[:'payoff_balance']
|
279
295
|
end
|
280
296
|
|
297
|
+
if attributes.has_key?(:'pay_out_amount')
|
298
|
+
self.pay_out_amount = attributes[:'pay_out_amount']
|
299
|
+
end
|
300
|
+
|
301
|
+
if attributes.has_key?(:'premium_amount')
|
302
|
+
self.premium_amount = attributes[:'premium_amount']
|
303
|
+
end
|
304
|
+
|
281
305
|
if attributes.has_key?(:'started_on')
|
282
306
|
self.started_on = attributes[:'started_on']
|
283
307
|
end
|
@@ -336,6 +360,7 @@ module Atrium
|
|
336
360
|
death_benefit == o.death_benefit &&
|
337
361
|
guid == o.guid &&
|
338
362
|
holdings_value == o.holdings_value &&
|
363
|
+
insured_name == o.insured_name &&
|
339
364
|
institution_code == o.institution_code &&
|
340
365
|
interest_rate == o.interest_rate &&
|
341
366
|
is_closed == o.is_closed &&
|
@@ -349,6 +374,8 @@ module Atrium
|
|
349
374
|
original_balance == o.original_balance &&
|
350
375
|
payment_due_at == o.payment_due_at &&
|
351
376
|
payoff_balance == o.payoff_balance &&
|
377
|
+
pay_out_amount == o.pay_out_amount &&
|
378
|
+
premium_amount == o.premium_amount &&
|
352
379
|
started_on == o.started_on &&
|
353
380
|
subtype == o.subtype &&
|
354
381
|
total_account_value == o.total_account_value &&
|
@@ -366,7 +393,7 @@ module Atrium
|
|
366
393
|
# Calculates hash code according to all attributes.
|
367
394
|
# @return [Fixnum] Hash code
|
368
395
|
def hash
|
369
|
-
[account_number, apr, apy, available_balance, available_credit, balance, cash_balance, cash_surrender_value, created_at, credit_limit, currency_code, day_payment_is_due, death_benefit, guid, holdings_value, institution_code, interest_rate, is_closed, last_payment, loan_amount, matures_on, member_guid, minimum_balance, minimum_payment, name, original_balance, payment_due_at, payoff_balance, started_on, subtype, total_account_value, type, updated_at, user_guid].hash
|
396
|
+
[account_number, apr, apy, available_balance, available_credit, balance, cash_balance, cash_surrender_value, created_at, credit_limit, currency_code, day_payment_is_due, death_benefit, guid, holdings_value, insured_name, institution_code, interest_rate, is_closed, last_payment, loan_amount, matures_on, member_guid, minimum_balance, minimum_payment, name, original_balance, payment_due_at, payoff_balance, pay_out_amount, premium_amount, started_on, subtype, total_account_value, type, updated_at, user_guid].hash
|
370
397
|
end
|
371
398
|
|
372
399
|
# Builds the object from hash
|
@@ -14,10 +14,14 @@ module Atrium
|
|
14
14
|
|
15
15
|
attr_accessor :account_number
|
16
16
|
|
17
|
+
attr_accessor :institution_number
|
18
|
+
|
17
19
|
attr_accessor :member_guid
|
18
20
|
|
19
21
|
attr_accessor :routing_number
|
20
22
|
|
23
|
+
attr_accessor :transit_number
|
24
|
+
|
21
25
|
attr_accessor :user_guid
|
22
26
|
|
23
27
|
# Attribute mapping from ruby-style variable name to JSON key.
|
@@ -25,8 +29,10 @@ module Atrium
|
|
25
29
|
{
|
26
30
|
:'account_guid' => :'account_guid',
|
27
31
|
:'account_number' => :'account_number',
|
32
|
+
:'institution_number' => :'institution_number',
|
28
33
|
:'member_guid' => :'member_guid',
|
29
34
|
:'routing_number' => :'routing_number',
|
35
|
+
:'transit_number' => :'transit_number',
|
30
36
|
:'user_guid' => :'user_guid'
|
31
37
|
}
|
32
38
|
end
|
@@ -36,8 +42,10 @@ module Atrium
|
|
36
42
|
{
|
37
43
|
:'account_guid' => :'String',
|
38
44
|
:'account_number' => :'String',
|
45
|
+
:'institution_number' => :'String',
|
39
46
|
:'member_guid' => :'String',
|
40
47
|
:'routing_number' => :'String',
|
48
|
+
:'transit_number' => :'String',
|
41
49
|
:'user_guid' => :'String'
|
42
50
|
}
|
43
51
|
end
|
@@ -58,6 +66,10 @@ module Atrium
|
|
58
66
|
self.account_number = attributes[:'account_number']
|
59
67
|
end
|
60
68
|
|
69
|
+
if attributes.has_key?(:'institution_number')
|
70
|
+
self.institution_number = attributes[:'institution_number']
|
71
|
+
end
|
72
|
+
|
61
73
|
if attributes.has_key?(:'member_guid')
|
62
74
|
self.member_guid = attributes[:'member_guid']
|
63
75
|
end
|
@@ -66,6 +78,10 @@ module Atrium
|
|
66
78
|
self.routing_number = attributes[:'routing_number']
|
67
79
|
end
|
68
80
|
|
81
|
+
if attributes.has_key?(:'transit_number')
|
82
|
+
self.transit_number = attributes[:'transit_number']
|
83
|
+
end
|
84
|
+
|
69
85
|
if attributes.has_key?(:'user_guid')
|
70
86
|
self.user_guid = attributes[:'user_guid']
|
71
87
|
end
|
@@ -91,8 +107,10 @@ module Atrium
|
|
91
107
|
self.class == o.class &&
|
92
108
|
account_guid == o.account_guid &&
|
93
109
|
account_number == o.account_number &&
|
110
|
+
institution_number == o.institution_number &&
|
94
111
|
member_guid == o.member_guid &&
|
95
112
|
routing_number == o.routing_number &&
|
113
|
+
transit_number == o.transit_number &&
|
96
114
|
user_guid == o.user_guid
|
97
115
|
end
|
98
116
|
|
@@ -105,7 +123,7 @@ module Atrium
|
|
105
123
|
# Calculates hash code according to all attributes.
|
106
124
|
# @return [Fixnum] Hash code
|
107
125
|
def hash
|
108
|
-
[account_guid, account_number, member_guid, routing_number, user_guid].hash
|
126
|
+
[account_guid, account_number, institution_number, member_guid, routing_number, transit_number, user_guid].hash
|
109
127
|
end
|
110
128
|
|
111
129
|
# Builds the object from hash
|
@@ -12,28 +12,40 @@ module Atrium
|
|
12
12
|
class ConnectWidgetRequestBody
|
13
13
|
attr_accessor :is_mobile_webview
|
14
14
|
|
15
|
+
attr_accessor :color_scheme
|
16
|
+
|
15
17
|
attr_accessor :current_institution_code
|
16
18
|
|
17
19
|
attr_accessor :current_member_guid
|
18
20
|
|
19
21
|
attr_accessor :disable_institution_search
|
20
22
|
|
23
|
+
attr_accessor :include_transactions
|
24
|
+
|
21
25
|
attr_accessor :mode
|
22
26
|
|
23
27
|
attr_accessor :ui_message_version
|
24
28
|
|
29
|
+
attr_accessor :ui_message_webview_url_scheme
|
30
|
+
|
25
31
|
attr_accessor :update_credentials
|
26
32
|
|
33
|
+
attr_accessor :wait_for_full_aggregation
|
34
|
+
|
27
35
|
# Attribute mapping from ruby-style variable name to JSON key.
|
28
36
|
def self.attribute_map
|
29
37
|
{
|
30
38
|
:'is_mobile_webview' => :'is_mobile_webview',
|
39
|
+
:'color_scheme' => :'color_scheme',
|
31
40
|
:'current_institution_code' => :'current_institution_code',
|
32
41
|
:'current_member_guid' => :'current_member_guid',
|
33
42
|
:'disable_institution_search' => :'disable_institution_search',
|
43
|
+
:'include_transactions' => :'include_transactions',
|
34
44
|
:'mode' => :'mode',
|
35
45
|
:'ui_message_version' => :'ui_message_version',
|
36
|
-
:'
|
46
|
+
:'ui_message_webview_url_scheme' => :'ui_message_webview_url_scheme',
|
47
|
+
:'update_credentials' => :'update_credentials',
|
48
|
+
:'wait_for_full_aggregation' => :'wait_for_full_aggregation'
|
37
49
|
}
|
38
50
|
end
|
39
51
|
|
@@ -41,12 +53,16 @@ module Atrium
|
|
41
53
|
def self.mx_types
|
42
54
|
{
|
43
55
|
:'is_mobile_webview' => :'BOOLEAN',
|
56
|
+
:'color_scheme' => :'String',
|
44
57
|
:'current_institution_code' => :'String',
|
45
58
|
:'current_member_guid' => :'String',
|
46
59
|
:'disable_institution_search' => :'BOOLEAN',
|
60
|
+
:'include_transactions' => :'BOOLEAN',
|
47
61
|
:'mode' => :'String',
|
48
62
|
:'ui_message_version' => :'Float',
|
49
|
-
:'
|
63
|
+
:'ui_message_webview_url_scheme' => :'String',
|
64
|
+
:'update_credentials' => :'BOOLEAN',
|
65
|
+
:'wait_for_full_aggregation' => :'BOOLEAN'
|
50
66
|
}
|
51
67
|
end
|
52
68
|
|
@@ -62,6 +78,10 @@ module Atrium
|
|
62
78
|
self.is_mobile_webview = attributes[:'is_mobile_webview']
|
63
79
|
end
|
64
80
|
|
81
|
+
if attributes.has_key?(:'color_scheme')
|
82
|
+
self.color_scheme = attributes[:'color_scheme']
|
83
|
+
end
|
84
|
+
|
65
85
|
if attributes.has_key?(:'current_institution_code')
|
66
86
|
self.current_institution_code = attributes[:'current_institution_code']
|
67
87
|
end
|
@@ -74,6 +94,10 @@ module Atrium
|
|
74
94
|
self.disable_institution_search = attributes[:'disable_institution_search']
|
75
95
|
end
|
76
96
|
|
97
|
+
if attributes.has_key?(:'include_transactions')
|
98
|
+
self.include_transactions = attributes[:'include_transactions']
|
99
|
+
end
|
100
|
+
|
77
101
|
if attributes.has_key?(:'mode')
|
78
102
|
self.mode = attributes[:'mode']
|
79
103
|
end
|
@@ -82,9 +106,17 @@ module Atrium
|
|
82
106
|
self.ui_message_version = attributes[:'ui_message_version']
|
83
107
|
end
|
84
108
|
|
109
|
+
if attributes.has_key?(:'ui_message_webview_url_scheme')
|
110
|
+
self.ui_message_webview_url_scheme = attributes[:'ui_message_webview_url_scheme']
|
111
|
+
end
|
112
|
+
|
85
113
|
if attributes.has_key?(:'update_credentials')
|
86
114
|
self.update_credentials = attributes[:'update_credentials']
|
87
115
|
end
|
116
|
+
|
117
|
+
if attributes.has_key?(:'wait_for_full_aggregation')
|
118
|
+
self.wait_for_full_aggregation = attributes[:'wait_for_full_aggregation']
|
119
|
+
end
|
88
120
|
end
|
89
121
|
|
90
122
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -106,12 +138,16 @@ module Atrium
|
|
106
138
|
return true if self.equal?(o)
|
107
139
|
self.class == o.class &&
|
108
140
|
is_mobile_webview == o.is_mobile_webview &&
|
141
|
+
color_scheme == o.color_scheme &&
|
109
142
|
current_institution_code == o.current_institution_code &&
|
110
143
|
current_member_guid == o.current_member_guid &&
|
111
144
|
disable_institution_search == o.disable_institution_search &&
|
145
|
+
include_transactions == o.include_transactions &&
|
112
146
|
mode == o.mode &&
|
113
147
|
ui_message_version == o.ui_message_version &&
|
114
|
-
|
148
|
+
ui_message_webview_url_scheme == o.ui_message_webview_url_scheme &&
|
149
|
+
update_credentials == o.update_credentials &&
|
150
|
+
wait_for_full_aggregation == o.wait_for_full_aggregation
|
115
151
|
end
|
116
152
|
|
117
153
|
# @see the `==` method
|
@@ -123,7 +159,7 @@ module Atrium
|
|
123
159
|
# Calculates hash code according to all attributes.
|
124
160
|
# @return [Fixnum] Hash code
|
125
161
|
def hash
|
126
|
-
[is_mobile_webview, current_institution_code, current_member_guid, disable_institution_search, mode, ui_message_version, update_credentials].hash
|
162
|
+
[is_mobile_webview, color_scheme, current_institution_code, current_member_guid, disable_institution_search, include_transactions, mode, ui_message_version, ui_message_webview_url_scheme, update_credentials, wait_for_full_aggregation].hash
|
127
163
|
end
|
128
164
|
|
129
165
|
# Builds the object from hash
|