Skip to content

Commit 0e08ef8

Browse files
authored
Merge pull request #88 from mxenabled/openapi-generator-0.30.0
Generated version 0.30.0
2 parents f85c3f3 + 48bf5b2 commit 0e08ef8

5 files changed

Lines changed: 21 additions & 3 deletions

File tree

docs/MemberStatusResponse.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
| **connection_status** | **String** | | [optional] |
1010
| **guid** | **String** | | [optional] |
1111
| **has_processed_accounts** | **Boolean** | | [optional] |
12+
| **has_processed_account_numbers** | **Boolean** | | [optional] |
1213
| **has_processed_transactions** | **Boolean** | | [optional] |
1314
| **is_authenticated** | **Boolean** | | [optional] |
1415
| **is_being_aggregated** | **Boolean** | | [optional] |
@@ -25,6 +26,7 @@ instance = MxPlatformRuby::MemberStatusResponse.new(
2526
connection_status: CONNECTED,
2627
guid: MBR-7c6f361b-e582-15b6-60c0-358f12466b4b,
2728
has_processed_accounts: true,
29+
has_processed_account_numbers: true,
2830
has_processed_transactions: false,
2931
is_authenticated: false,
3032
is_being_aggregated: false,

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

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ class MemberStatusResponse
2525

2626
attr_accessor :has_processed_accounts
2727

28+
attr_accessor :has_processed_account_numbers
29+
2830
attr_accessor :has_processed_transactions
2931

3032
attr_accessor :is_authenticated
@@ -41,6 +43,7 @@ def self.attribute_map
4143
:'connection_status' => :'connection_status',
4244
:'guid' => :'guid',
4345
:'has_processed_accounts' => :'has_processed_accounts',
46+
:'has_processed_account_numbers' => :'has_processed_account_numbers',
4447
:'has_processed_transactions' => :'has_processed_transactions',
4548
:'is_authenticated' => :'is_authenticated',
4649
:'is_being_aggregated' => :'is_being_aggregated',
@@ -61,6 +64,7 @@ def self.openapi_types
6164
:'connection_status' => :'String',
6265
:'guid' => :'String',
6366
:'has_processed_accounts' => :'Boolean',
67+
:'has_processed_account_numbers' => :'Boolean',
6468
:'has_processed_transactions' => :'Boolean',
6569
:'is_authenticated' => :'Boolean',
6670
:'is_being_aggregated' => :'Boolean',
@@ -75,6 +79,7 @@ def self.openapi_nullable
7579
:'connection_status',
7680
:'guid',
7781
:'has_processed_accounts',
82+
:'has_processed_account_numbers',
7883
:'has_processed_transactions',
7984
:'is_authenticated',
8085
:'is_being_aggregated',
@@ -119,6 +124,10 @@ def initialize(attributes = {})
119124
self.has_processed_accounts = attributes[:'has_processed_accounts']
120125
end
121126

127+
if attributes.key?(:'has_processed_account_numbers')
128+
self.has_processed_account_numbers = attributes[:'has_processed_account_numbers']
129+
end
130+
122131
if attributes.key?(:'has_processed_transactions')
123132
self.has_processed_transactions = attributes[:'has_processed_transactions']
124133
end
@@ -161,6 +170,7 @@ def ==(o)
161170
connection_status == o.connection_status &&
162171
guid == o.guid &&
163172
has_processed_accounts == o.has_processed_accounts &&
173+
has_processed_account_numbers == o.has_processed_account_numbers &&
164174
has_processed_transactions == o.has_processed_transactions &&
165175
is_authenticated == o.is_authenticated &&
166176
is_being_aggregated == o.is_being_aggregated &&
@@ -176,7 +186,7 @@ def eql?(o)
176186
# Calculates hash code according to all attributes.
177187
# @return [Integer] Hash code
178188
def hash
179-
[aggregated_at, challenges, connection_status, guid, has_processed_accounts, has_processed_transactions, is_authenticated, is_being_aggregated, successfully_aggregated_at].hash
189+
[aggregated_at, challenges, connection_status, guid, has_processed_accounts, has_processed_account_numbers, has_processed_transactions, is_authenticated, is_being_aggregated, successfully_aggregated_at].hash
180190
end
181191

182192
# 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.29.0'
14+
VERSION = '0.30.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.29.0
9+
gemVersion: 0.30.0
1010
library: faraday
1111
moduleName: MxPlatformRuby

spec/models/member_status_response_spec.rb

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@
5555
end
5656
end
5757

58+
describe 'test attribute "has_processed_account_numbers"' do
59+
it 'should work' do
60+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
61+
end
62+
end
63+
5864
describe 'test attribute "has_processed_transactions"' do
5965
it 'should work' do
6066
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/

0 commit comments

Comments
 (0)