mx-platform-ruby 0.13.0 → 0.13.1
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: 0f4cb1fbbb31e28057c45e490bbf68e7fc0766edd67c020cc091c947a6429456
|
4
|
+
data.tar.gz: 221346e032385e534779514a0a47abb55a96824595f97612007d378b1ae0261c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67e1a34a73cee9c23883134d234178ff9055176f1ccfb6b3471f44b4ba1f2d9ac3634458a10b6781e8b37277bc598930582a352902a4e447056774216c91f36f
|
7
|
+
data.tar.gz: 7a17ee9af7712631a18de30b1c14282922d2f0296e4f35ec866ea8a0e7bac64be2802779ea33c7e33bcf933b84be22a1bb337f1ca24e2ed358547c321101c831
|
data/Gemfile.lock
CHANGED
data/docs/InstitutionResponse.md
CHANGED
@@ -5,6 +5,7 @@
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
7
|
| **code** | **String** | | [optional] |
|
8
|
+
| **instructional_text** | **String** | | [optional] |
|
8
9
|
| **medium_logo_url** | **String** | | [optional] |
|
9
10
|
| **name** | **String** | | [optional] |
|
10
11
|
| **small_logo_url** | **String** | | [optional] |
|
@@ -22,6 +23,7 @@ require 'mx-platform-ruby'
|
|
22
23
|
|
23
24
|
instance = MxPlatformRuby::InstitutionResponse.new(
|
24
25
|
code: chase,
|
26
|
+
instructional_text: Some instructional text <a href="https://example.url.chase.com/instructions" id="instructional_text">for end users</a>.,
|
25
27
|
medium_logo_url: https://content.moneydesktop.com/storage/MD_Assets/Ipad%20Logos/100x100/default_100x100.png,
|
26
28
|
name: Chase Bank,
|
27
29
|
small_logo_url: https://content.moneydesktop.com/storage/MD_Assets/Ipad%20Logos/50x50/default_50x50.png,
|
@@ -17,6 +17,8 @@ module MxPlatformRuby
|
|
17
17
|
class InstitutionResponse
|
18
18
|
attr_accessor :code
|
19
19
|
|
20
|
+
attr_accessor :instructional_text
|
21
|
+
|
20
22
|
attr_accessor :medium_logo_url
|
21
23
|
|
22
24
|
attr_accessor :name
|
@@ -39,6 +41,7 @@ module MxPlatformRuby
|
|
39
41
|
def self.attribute_map
|
40
42
|
{
|
41
43
|
:'code' => :'code',
|
44
|
+
:'instructional_text' => :'instructional_text',
|
42
45
|
:'medium_logo_url' => :'medium_logo_url',
|
43
46
|
:'name' => :'name',
|
44
47
|
:'small_logo_url' => :'small_logo_url',
|
@@ -60,6 +63,7 @@ module MxPlatformRuby
|
|
60
63
|
def self.openapi_types
|
61
64
|
{
|
62
65
|
:'code' => :'String',
|
66
|
+
:'instructional_text' => :'String',
|
63
67
|
:'medium_logo_url' => :'String',
|
64
68
|
:'name' => :'String',
|
65
69
|
:'small_logo_url' => :'String',
|
@@ -76,6 +80,7 @@ module MxPlatformRuby
|
|
76
80
|
def self.openapi_nullable
|
77
81
|
Set.new([
|
78
82
|
:'code',
|
83
|
+
:'instructional_text',
|
79
84
|
:'medium_logo_url',
|
80
85
|
:'name',
|
81
86
|
:'small_logo_url',
|
@@ -107,6 +112,10 @@ module MxPlatformRuby
|
|
107
112
|
self.code = attributes[:'code']
|
108
113
|
end
|
109
114
|
|
115
|
+
if attributes.key?(:'instructional_text')
|
116
|
+
self.instructional_text = attributes[:'instructional_text']
|
117
|
+
end
|
118
|
+
|
110
119
|
if attributes.key?(:'medium_logo_url')
|
111
120
|
self.medium_logo_url = attributes[:'medium_logo_url']
|
112
121
|
end
|
@@ -163,6 +172,7 @@ module MxPlatformRuby
|
|
163
172
|
return true if self.equal?(o)
|
164
173
|
self.class == o.class &&
|
165
174
|
code == o.code &&
|
175
|
+
instructional_text == o.instructional_text &&
|
166
176
|
medium_logo_url == o.medium_logo_url &&
|
167
177
|
name == o.name &&
|
168
178
|
small_logo_url == o.small_logo_url &&
|
@@ -183,7 +193,7 @@ module MxPlatformRuby
|
|
183
193
|
# Calculates hash code according to all attributes.
|
184
194
|
# @return [Integer] Hash code
|
185
195
|
def hash
|
186
|
-
[code, medium_logo_url, name, small_logo_url, supports_account_identification, supports_account_statement, supports_account_verification, supports_oauth, supports_transaction_history, url].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
|
187
197
|
end
|
188
198
|
|
189
199
|
# Builds the object from hash
|
data/openapi/config.yml
CHANGED
@@ -31,6 +31,12 @@ describe MxPlatformRuby::InstitutionResponse do
|
|
31
31
|
end
|
32
32
|
end
|
33
33
|
|
34
|
+
describe 'test attribute "instructional_text"' 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
|
+
|
34
40
|
describe 'test attribute "medium_logo_url"' do
|
35
41
|
it 'should work' do
|
36
42
|
# 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.13.
|
4
|
+
version: 0.13.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- MX
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-04-
|
11
|
+
date: 2022-04-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|