Skip to content

Commit b69e214

Browse files
author
devexperience
committed
Generated version 0.17.0
This commit was automatically created by a GitHub Action to generate version 0.17.0 of this library.
1 parent 962501a commit b69e214

5 files changed

Lines changed: 57 additions & 3 deletions

File tree

docs/InstitutionResponse.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
| Name | Type | Description | Notes |
66
| ---- | ---- | ----------- | ----- |
77
| **code** | **String** | | [optional] |
8+
| **forgot_password_url** | **String** | | [optional] |
9+
| **forgot_username_url** | **String** | | [optional] |
810
| **instructional_text** | **String** | | [optional] |
911
| **medium_logo_url** | **String** | | [optional] |
1012
| **name** | **String** | | [optional] |
@@ -14,6 +16,7 @@
1416
| **supports_account_verification** | **Boolean** | | [optional] |
1517
| **supports_oauth** | **Boolean** | | [optional] |
1618
| **supports_transaction_history** | **Boolean** | | [optional] |
19+
| **trouble_signing_in_url** | **String** | | [optional] |
1720
| **url** | **String** | | [optional] |
1821

1922
## Example
@@ -23,6 +26,8 @@ require 'mx-platform-ruby'
2326

2427
instance = MxPlatformRuby::InstitutionResponse.new(
2528
code: chase,
29+
forgot_password_url: https://example.url.chase.com/forgot-password,
30+
forgot_username_url: https://example.url.chase.com/forgot-username,
2631
instructional_text: Some instructional text <a href="https://example.url.chase.com/instructions" id="instructional_text">for end users</a>.,
2732
medium_logo_url: https://content.moneydesktop.com/storage/MD_Assets/Ipad%20Logos/100x100/default_100x100.png,
2833
name: Chase Bank,
@@ -32,6 +37,7 @@ instance = MxPlatformRuby::InstitutionResponse.new(
3237
supports_account_verification: true,
3338
supports_oauth: true,
3439
supports_transaction_history: true,
40+
trouble_signing_in_url: https://example.url.chase.com/login-trouble,
3541
url: https://www.chase.com
3642
)
3743
```

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

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ module MxPlatformRuby
1717
class InstitutionResponse
1818
attr_accessor :code
1919

20+
attr_accessor :forgot_password_url
21+
22+
attr_accessor :forgot_username_url
23+
2024
attr_accessor :instructional_text
2125

2226
attr_accessor :medium_logo_url
@@ -35,12 +39,16 @@ class InstitutionResponse
3539

3640
attr_accessor :supports_transaction_history
3741

42+
attr_accessor :trouble_signing_in_url
43+
3844
attr_accessor :url
3945

4046
# Attribute mapping from ruby-style variable name to JSON key.
4147
def self.attribute_map
4248
{
4349
:'code' => :'code',
50+
:'forgot_password_url' => :'forgot_password_url',
51+
:'forgot_username_url' => :'forgot_username_url',
4452
:'instructional_text' => :'instructional_text',
4553
:'medium_logo_url' => :'medium_logo_url',
4654
:'name' => :'name',
@@ -50,6 +58,7 @@ def self.attribute_map
5058
:'supports_account_verification' => :'supports_account_verification',
5159
:'supports_oauth' => :'supports_oauth',
5260
:'supports_transaction_history' => :'supports_transaction_history',
61+
:'trouble_signing_in_url' => :'trouble_signing_in_url',
5362
:'url' => :'url'
5463
}
5564
end
@@ -63,6 +72,8 @@ def self.acceptable_attributes
6372
def self.openapi_types
6473
{
6574
:'code' => :'String',
75+
:'forgot_password_url' => :'String',
76+
:'forgot_username_url' => :'String',
6677
:'instructional_text' => :'String',
6778
:'medium_logo_url' => :'String',
6879
:'name' => :'String',
@@ -72,6 +83,7 @@ def self.openapi_types
7283
:'supports_account_verification' => :'Boolean',
7384
:'supports_oauth' => :'Boolean',
7485
:'supports_transaction_history' => :'Boolean',
86+
:'trouble_signing_in_url' => :'String',
7587
:'url' => :'String'
7688
}
7789
end
@@ -80,6 +92,8 @@ def self.openapi_types
8092
def self.openapi_nullable
8193
Set.new([
8294
:'code',
95+
:'forgot_password_url',
96+
:'forgot_username_url',
8397
:'instructional_text',
8498
:'medium_logo_url',
8599
:'name',
@@ -89,6 +103,7 @@ def self.openapi_nullable
89103
:'supports_account_verification',
90104
:'supports_oauth',
91105
:'supports_transaction_history',
106+
:'trouble_signing_in_url',
92107
:'url'
93108
])
94109
end
@@ -112,6 +127,14 @@ def initialize(attributes = {})
112127
self.code = attributes[:'code']
113128
end
114129

130+
if attributes.key?(:'forgot_password_url')
131+
self.forgot_password_url = attributes[:'forgot_password_url']
132+
end
133+
134+
if attributes.key?(:'forgot_username_url')
135+
self.forgot_username_url = attributes[:'forgot_username_url']
136+
end
137+
115138
if attributes.key?(:'instructional_text')
116139
self.instructional_text = attributes[:'instructional_text']
117140
end
@@ -148,6 +171,10 @@ def initialize(attributes = {})
148171
self.supports_transaction_history = attributes[:'supports_transaction_history']
149172
end
150173

174+
if attributes.key?(:'trouble_signing_in_url')
175+
self.trouble_signing_in_url = attributes[:'trouble_signing_in_url']
176+
end
177+
151178
if attributes.key?(:'url')
152179
self.url = attributes[:'url']
153180
end
@@ -172,6 +199,8 @@ def ==(o)
172199
return true if self.equal?(o)
173200
self.class == o.class &&
174201
code == o.code &&
202+
forgot_password_url == o.forgot_password_url &&
203+
forgot_username_url == o.forgot_username_url &&
175204
instructional_text == o.instructional_text &&
176205
medium_logo_url == o.medium_logo_url &&
177206
name == o.name &&
@@ -181,6 +210,7 @@ def ==(o)
181210
supports_account_verification == o.supports_account_verification &&
182211
supports_oauth == o.supports_oauth &&
183212
supports_transaction_history == o.supports_transaction_history &&
213+
trouble_signing_in_url == o.trouble_signing_in_url &&
184214
url == o.url
185215
end
186216

@@ -193,7 +223,7 @@ def eql?(o)
193223
# Calculates hash code according to all attributes.
194224
# @return [Integer] Hash code
195225
def hash
196-
[code, instructional_text, medium_logo_url, name, small_logo_url, supports_account_identification, supports_account_statement, supports_account_verification, supports_oauth, supports_transaction_history, url].hash
226+
[code, forgot_password_url, forgot_username_url, instructional_text, medium_logo_url, name, small_logo_url, supports_account_identification, supports_account_statement, supports_account_verification, supports_oauth, supports_transaction_history, trouble_signing_in_url, url].hash
197227
end
198228

199229
# 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.16.0'
14+
VERSION = '0.17.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.16.0
9+
gemVersion: 0.17.0
1010
library: faraday
1111
moduleName: MxPlatformRuby

spec/models/institution_response_spec.rb

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,18 @@
3131
end
3232
end
3333

34+
describe 'test attribute "forgot_password_url"' do
35+
it 'should work' do
36+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37+
end
38+
end
39+
40+
describe 'test attribute "forgot_username_url"' do
41+
it 'should work' do
42+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43+
end
44+
end
45+
3446
describe 'test attribute "instructional_text"' do
3547
it 'should work' do
3648
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -85,6 +97,12 @@
8597
end
8698
end
8799

100+
describe 'test attribute "trouble_signing_in_url"' do
101+
it 'should work' do
102+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
103+
end
104+
end
105+
88106
describe 'test attribute "url"' do
89107
it 'should work' do
90108
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers

0 commit comments

Comments
 (0)