mx-platform-ruby 0.16.0 → 0.17.0
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b936e81b35f1be7e58438403e10793c9288707645830a58687b31297198211f0
|
4
|
+
data.tar.gz: 4e6242f67b061afbb56ae5dd269f312cfda00ca00e4109abb3b2dfa7484a1b1d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 387337d17b600182887959e099bb19a10412c5d5c26146fdb0367ba61ea8ffc2c53d45ae3e860f590310be7246323b8edda3c2cdd7f8fde462a21933dd52109e
|
7
|
+
data.tar.gz: 8e026569511052e4404604a3483aa7636991d642d23835db35ebb72abe08ded9db655f8c0a09e6c10e8d3cc20dfd4e5f4e17777c489dc9ab04cec41c12bcb16e
|
data/Gemfile.lock
CHANGED
data/docs/InstitutionResponse.md
CHANGED
@@ -5,6 +5,8 @@
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
7
|
| **code** | **String** | | [optional] |
|
8
|
+
| **forgot_password_url** | **String** | | [optional] |
|
9
|
+
| **forgot_username_url** | **String** | | [optional] |
|
8
10
|
| **instructional_text** | **String** | | [optional] |
|
9
11
|
| **medium_logo_url** | **String** | | [optional] |
|
10
12
|
| **name** | **String** | | [optional] |
|
@@ -14,6 +16,7 @@
|
|
14
16
|
| **supports_account_verification** | **Boolean** | | [optional] |
|
15
17
|
| **supports_oauth** | **Boolean** | | [optional] |
|
16
18
|
| **supports_transaction_history** | **Boolean** | | [optional] |
|
19
|
+
| **trouble_signing_in_url** | **String** | | [optional] |
|
17
20
|
| **url** | **String** | | [optional] |
|
18
21
|
|
19
22
|
## Example
|
@@ -23,6 +26,8 @@ require 'mx-platform-ruby'
|
|
23
26
|
|
24
27
|
instance = MxPlatformRuby::InstitutionResponse.new(
|
25
28
|
code: chase,
|
29
|
+
forgot_password_url: https://example.url.chase.com/forgot-password,
|
30
|
+
forgot_username_url: https://example.url.chase.com/forgot-username,
|
26
31
|
instructional_text: Some instructional text <a href="https://example.url.chase.com/instructions" id="instructional_text">for end users</a>.,
|
27
32
|
medium_logo_url: https://content.moneydesktop.com/storage/MD_Assets/Ipad%20Logos/100x100/default_100x100.png,
|
28
33
|
name: Chase Bank,
|
@@ -32,6 +37,7 @@ instance = MxPlatformRuby::InstitutionResponse.new(
|
|
32
37
|
supports_account_verification: true,
|
33
38
|
supports_oauth: true,
|
34
39
|
supports_transaction_history: true,
|
40
|
+
trouble_signing_in_url: https://example.url.chase.com/login-trouble,
|
35
41
|
url: https://www.chase.com
|
36
42
|
)
|
37
43
|
```
|
@@ -17,6 +17,10 @@ module MxPlatformRuby
|
|
17
17
|
class InstitutionResponse
|
18
18
|
attr_accessor :code
|
19
19
|
|
20
|
+
attr_accessor :forgot_password_url
|
21
|
+
|
22
|
+
attr_accessor :forgot_username_url
|
23
|
+
|
20
24
|
attr_accessor :instructional_text
|
21
25
|
|
22
26
|
attr_accessor :medium_logo_url
|
@@ -35,12 +39,16 @@ module MxPlatformRuby
|
|
35
39
|
|
36
40
|
attr_accessor :supports_transaction_history
|
37
41
|
|
42
|
+
attr_accessor :trouble_signing_in_url
|
43
|
+
|
38
44
|
attr_accessor :url
|
39
45
|
|
40
46
|
# Attribute mapping from ruby-style variable name to JSON key.
|
41
47
|
def self.attribute_map
|
42
48
|
{
|
43
49
|
:'code' => :'code',
|
50
|
+
:'forgot_password_url' => :'forgot_password_url',
|
51
|
+
:'forgot_username_url' => :'forgot_username_url',
|
44
52
|
:'instructional_text' => :'instructional_text',
|
45
53
|
:'medium_logo_url' => :'medium_logo_url',
|
46
54
|
:'name' => :'name',
|
@@ -50,6 +58,7 @@ module MxPlatformRuby
|
|
50
58
|
:'supports_account_verification' => :'supports_account_verification',
|
51
59
|
:'supports_oauth' => :'supports_oauth',
|
52
60
|
:'supports_transaction_history' => :'supports_transaction_history',
|
61
|
+
:'trouble_signing_in_url' => :'trouble_signing_in_url',
|
53
62
|
:'url' => :'url'
|
54
63
|
}
|
55
64
|
end
|
@@ -63,6 +72,8 @@ module MxPlatformRuby
|
|
63
72
|
def self.openapi_types
|
64
73
|
{
|
65
74
|
:'code' => :'String',
|
75
|
+
:'forgot_password_url' => :'String',
|
76
|
+
:'forgot_username_url' => :'String',
|
66
77
|
:'instructional_text' => :'String',
|
67
78
|
:'medium_logo_url' => :'String',
|
68
79
|
:'name' => :'String',
|
@@ -72,6 +83,7 @@ module MxPlatformRuby
|
|
72
83
|
:'supports_account_verification' => :'Boolean',
|
73
84
|
:'supports_oauth' => :'Boolean',
|
74
85
|
:'supports_transaction_history' => :'Boolean',
|
86
|
+
:'trouble_signing_in_url' => :'String',
|
75
87
|
:'url' => :'String'
|
76
88
|
}
|
77
89
|
end
|
@@ -80,6 +92,8 @@ module MxPlatformRuby
|
|
80
92
|
def self.openapi_nullable
|
81
93
|
Set.new([
|
82
94
|
:'code',
|
95
|
+
:'forgot_password_url',
|
96
|
+
:'forgot_username_url',
|
83
97
|
:'instructional_text',
|
84
98
|
:'medium_logo_url',
|
85
99
|
:'name',
|
@@ -89,6 +103,7 @@ module MxPlatformRuby
|
|
89
103
|
:'supports_account_verification',
|
90
104
|
:'supports_oauth',
|
91
105
|
:'supports_transaction_history',
|
106
|
+
:'trouble_signing_in_url',
|
92
107
|
:'url'
|
93
108
|
])
|
94
109
|
end
|
@@ -112,6 +127,14 @@ module MxPlatformRuby
|
|
112
127
|
self.code = attributes[:'code']
|
113
128
|
end
|
114
129
|
|
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
|
+
|
115
138
|
if attributes.key?(:'instructional_text')
|
116
139
|
self.instructional_text = attributes[:'instructional_text']
|
117
140
|
end
|
@@ -148,6 +171,10 @@ module MxPlatformRuby
|
|
148
171
|
self.supports_transaction_history = attributes[:'supports_transaction_history']
|
149
172
|
end
|
150
173
|
|
174
|
+
if attributes.key?(:'trouble_signing_in_url')
|
175
|
+
self.trouble_signing_in_url = attributes[:'trouble_signing_in_url']
|
176
|
+
end
|
177
|
+
|
151
178
|
if attributes.key?(:'url')
|
152
179
|
self.url = attributes[:'url']
|
153
180
|
end
|
@@ -172,6 +199,8 @@ module MxPlatformRuby
|
|
172
199
|
return true if self.equal?(o)
|
173
200
|
self.class == o.class &&
|
174
201
|
code == o.code &&
|
202
|
+
forgot_password_url == o.forgot_password_url &&
|
203
|
+
forgot_username_url == o.forgot_username_url &&
|
175
204
|
instructional_text == o.instructional_text &&
|
176
205
|
medium_logo_url == o.medium_logo_url &&
|
177
206
|
name == o.name &&
|
@@ -181,6 +210,7 @@ module MxPlatformRuby
|
|
181
210
|
supports_account_verification == o.supports_account_verification &&
|
182
211
|
supports_oauth == o.supports_oauth &&
|
183
212
|
supports_transaction_history == o.supports_transaction_history &&
|
213
|
+
trouble_signing_in_url == o.trouble_signing_in_url &&
|
184
214
|
url == o.url
|
185
215
|
end
|
186
216
|
|
@@ -193,7 +223,7 @@ module MxPlatformRuby
|
|
193
223
|
# Calculates hash code according to all attributes.
|
194
224
|
# @return [Integer] Hash code
|
195
225
|
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
|
197
227
|
end
|
198
228
|
|
199
229
|
# Builds the object from hash
|
data/openapi/config.yml
CHANGED
@@ -31,6 +31,18 @@ describe MxPlatformRuby::InstitutionResponse do
|
|
31
31
|
end
|
32
32
|
end
|
33
33
|
|
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
|
+
|
34
46
|
describe 'test attribute "instructional_text"' do
|
35
47
|
it 'should work' do
|
36
48
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -85,6 +97,12 @@ describe MxPlatformRuby::InstitutionResponse do
|
|
85
97
|
end
|
86
98
|
end
|
87
99
|
|
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
|
+
|
88
106
|
describe 'test attribute "url"' do
|
89
107
|
it 'should work' do
|
90
108
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mx-platform-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.17.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- MX
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-05-
|
11
|
+
date: 2023-05-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|