Skip to content

Commit 8ac596b

Browse files
author
devexperience
committed
Generated version 0.31.0
This commit was automatically created by a GitHub Action to generate version 0.31.0 of this library.
1 parent 0e08ef8 commit 8ac596b

File tree

5 files changed

+57
-3
lines changed

5 files changed

+57
-3
lines changed

docs/MemberResponse.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,11 @@
1212
| **institution_code** | **String** | | [optional] |
1313
| **is_being_aggregated** | **Boolean** | | [optional] |
1414
| **is_managed_by_user** | **Boolean** | | [optional] |
15+
| **is_manual** | **Boolean** | | [optional] |
1516
| **is_oauth** | **Boolean** | | [optional] |
1617
| **metadata** | **String** | | [optional] |
18+
| **most_recent_job_detail_code** | **String** | | [optional] |
19+
| **most_recent_job_detail_text** | **String** | | [optional] |
1720
| **name** | **String** | | [optional] |
1821
| **oauth_window_uri** | **String** | | [optional] |
1922
| **successfully_aggregated_at** | **String** | | [optional] |
@@ -34,8 +37,11 @@ instance = MxPlatformRuby::MemberResponse.new(
3437
institution_code: chase,
3538
is_being_aggregated: false,
3639
is_managed_by_user: false,
40+
is_manual: false,
3741
is_oauth: false,
3842
metadata: \"credentials_last_refreshed_at\": \"2015-10-15\",
43+
most_recent_job_detail_code: (deprecated),
44+
most_recent_job_detail_text: (deprecated),
3945
name: Chase Bank,
4046
oauth_window_uri: https://mxbank.mx.com/oauth/authorize?client_id=b8OikQ4Ep3NuSUrQ13DdvFuwpNx-qqoAsJDVAQCyLkQ&redirect_uri=https%3A%2F%2Fint-app.moneydesktop.com%2Foauth%2Fredirect_from&response_type=code&scope=openid&state=d745bd4ee6f0f9c184757f574bcc2df2,
4147
successfully_aggregated_at: 2016-10-13T17:57:38.000Z,

lib/mx-platform-ruby/models/member_response.rb

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,16 @@ class MemberResponse
3131

3232
attr_accessor :is_managed_by_user
3333

34+
attr_accessor :is_manual
35+
3436
attr_accessor :is_oauth
3537

3638
attr_accessor :metadata
3739

40+
attr_accessor :most_recent_job_detail_code
41+
42+
attr_accessor :most_recent_job_detail_text
43+
3844
attr_accessor :name
3945

4046
attr_accessor :oauth_window_uri
@@ -56,8 +62,11 @@ def self.attribute_map
5662
:'institution_code' => :'institution_code',
5763
:'is_being_aggregated' => :'is_being_aggregated',
5864
:'is_managed_by_user' => :'is_managed_by_user',
65+
:'is_manual' => :'is_manual',
5966
:'is_oauth' => :'is_oauth',
6067
:'metadata' => :'metadata',
68+
:'most_recent_job_detail_code' => :'most_recent_job_detail_code',
69+
:'most_recent_job_detail_text' => :'most_recent_job_detail_text',
6170
:'name' => :'name',
6271
:'oauth_window_uri' => :'oauth_window_uri',
6372
:'successfully_aggregated_at' => :'successfully_aggregated_at',
@@ -82,8 +91,11 @@ def self.openapi_types
8291
:'institution_code' => :'String',
8392
:'is_being_aggregated' => :'Boolean',
8493
:'is_managed_by_user' => :'Boolean',
94+
:'is_manual' => :'Boolean',
8595
:'is_oauth' => :'Boolean',
8696
:'metadata' => :'String',
97+
:'most_recent_job_detail_code' => :'String',
98+
:'most_recent_job_detail_text' => :'String',
8799
:'name' => :'String',
88100
:'oauth_window_uri' => :'String',
89101
:'successfully_aggregated_at' => :'String',
@@ -102,8 +114,11 @@ def self.openapi_nullable
102114
:'institution_code',
103115
:'is_being_aggregated',
104116
:'is_managed_by_user',
117+
:'is_manual',
105118
:'is_oauth',
106119
:'metadata',
120+
:'most_recent_job_detail_code',
121+
:'most_recent_job_detail_text',
107122
:'name',
108123
:'oauth_window_uri',
109124
:'successfully_aggregated_at',
@@ -159,6 +174,10 @@ def initialize(attributes = {})
159174
self.is_managed_by_user = attributes[:'is_managed_by_user']
160175
end
161176

177+
if attributes.key?(:'is_manual')
178+
self.is_manual = attributes[:'is_manual']
179+
end
180+
162181
if attributes.key?(:'is_oauth')
163182
self.is_oauth = attributes[:'is_oauth']
164183
end
@@ -167,6 +186,14 @@ def initialize(attributes = {})
167186
self.metadata = attributes[:'metadata']
168187
end
169188

189+
if attributes.key?(:'most_recent_job_detail_code')
190+
self.most_recent_job_detail_code = attributes[:'most_recent_job_detail_code']
191+
end
192+
193+
if attributes.key?(:'most_recent_job_detail_text')
194+
self.most_recent_job_detail_text = attributes[:'most_recent_job_detail_text']
195+
end
196+
170197
if attributes.key?(:'name')
171198
self.name = attributes[:'name']
172199
end
@@ -216,8 +243,11 @@ def ==(o)
216243
institution_code == o.institution_code &&
217244
is_being_aggregated == o.is_being_aggregated &&
218245
is_managed_by_user == o.is_managed_by_user &&
246+
is_manual == o.is_manual &&
219247
is_oauth == o.is_oauth &&
220248
metadata == o.metadata &&
249+
most_recent_job_detail_code == o.most_recent_job_detail_code &&
250+
most_recent_job_detail_text == o.most_recent_job_detail_text &&
221251
name == o.name &&
222252
oauth_window_uri == o.oauth_window_uri &&
223253
successfully_aggregated_at == o.successfully_aggregated_at &&
@@ -234,7 +264,7 @@ def eql?(o)
234264
# Calculates hash code according to all attributes.
235265
# @return [Integer] Hash code
236266
def hash
237-
[aggregated_at, background_aggregation_is_disabled, connection_status, guid, id, institution_code, is_being_aggregated, is_managed_by_user, is_oauth, metadata, name, oauth_window_uri, successfully_aggregated_at, user_guid, user_id].hash
267+
[aggregated_at, background_aggregation_is_disabled, connection_status, guid, id, institution_code, is_being_aggregated, is_managed_by_user, is_manual, is_oauth, metadata, most_recent_job_detail_code, most_recent_job_detail_text, name, oauth_window_uri, successfully_aggregated_at, user_guid, user_id].hash
238268
end
239269

240270
# Builds the object from hash

lib/mx-platform-ruby/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
=end
1212

1313
module MxPlatformRuby
14-
VERSION = '0.30.0'
14+
VERSION = '0.31.0'
1515
end

openapi/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ gemHomepage: https://github.com/mxenabled/mx-platform-ruby
66
gemLicense: MIT
77
gemName: mx-platform-ruby
88
gemRequiredRubyVersion: ">= 2.6"
9-
gemVersion: 0.30.0
9+
gemVersion: 0.31.0
1010
library: faraday
1111
moduleName: MxPlatformRuby

spec/models/member_response_spec.rb

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,12 @@
7373
end
7474
end
7575

76+
describe 'test attribute "is_manual"' do
77+
it 'should work' do
78+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
79+
end
80+
end
81+
7682
describe 'test attribute "is_oauth"' do
7783
it 'should work' do
7884
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -85,6 +91,18 @@
8591
end
8692
end
8793

94+
describe 'test attribute "most_recent_job_detail_code"' do
95+
it 'should work' do
96+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
97+
end
98+
end
99+
100+
describe 'test attribute "most_recent_job_detail_text"' do
101+
it 'should work' do
102+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
103+
end
104+
end
105+
88106
describe 'test attribute "name"' do
89107
it 'should work' do
90108
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/

0 commit comments

Comments
 (0)