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: c8c9932d47164f5ba0a55313c8d04533a49b040918a36460d63629c4a26b7424
4
- data.tar.gz: ac563753cd386527fd40e80eff1befb8c770a7d2181767eaa5e52ac33b6da5c6
3
+ metadata.gz: 0f4cb1fbbb31e28057c45e490bbf68e7fc0766edd67c020cc091c947a6429456
4
+ data.tar.gz: 221346e032385e534779514a0a47abb55a96824595f97612007d378b1ae0261c
5
5
  SHA512:
6
- metadata.gz: e9e7ae19dcfd2e11b86ee0e0978f01a5abd725c4dd7e490656654b1b50f976d51b268804ee0bd1d874e9cd4106053de0394965b4c99d1612faa6f252cdef081c
7
- data.tar.gz: a4f7f005328b79f0206b8038f562a1b71d01a56ff3a943544f3c37f2c5b93bb89fa2c41d2a83a7189ca5bd3d47bc417b4e7cc377c69e00c5ec75b34f450cbe65
6
+ metadata.gz: 67e1a34a73cee9c23883134d234178ff9055176f1ccfb6b3471f44b4ba1f2d9ac3634458a10b6781e8b37277bc598930582a352902a4e447056774216c91f36f
7
+ data.tar.gz: 7a17ee9af7712631a18de30b1c14282922d2f0296e4f35ec866ea8a0e7bac64be2802779ea33c7e33bcf933b84be22a1bb337f1ca24e2ed358547c321101c831
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- mx-platform-ruby (0.13.0)
4
+ mx-platform-ruby (0.13.1)
5
5
  faraday (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
@@ -87,4 +87,4 @@ DEPENDENCIES
87
87
  rubocop (~> 0.66.0)
88
88
 
89
89
  BUNDLED WITH
90
- 2.3.11
90
+ 2.3.12
@@ -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
@@ -11,5 +11,5 @@ OpenAPI Generator version: 5.4.0
11
11
  =end
12
12
 
13
13
  module MxPlatformRuby
14
- VERSION = '0.13.0'
14
+ VERSION = '0.13.1'
15
15
  end
data/openapi/config.yml CHANGED
@@ -6,6 +6,6 @@ gemHomepage: https://github.com/mxenabled/mx-platform-ruby
6
6
  gemLicense: MIT
7
7
  gemName: mx-platform-ruby
8
8
  gemRequiredRubyVersion: ">= 2.6"
9
- gemVersion: 0.13.0
9
+ gemVersion: 0.13.1
10
10
  library: faraday
11
11
  moduleName: MxPlatformRuby
@@ -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.0
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-14 00:00:00.000000000 Z
11
+ date: 2022-04-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday