moov_ruby 25.2.6 → 25.2.7
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: d342669226f337f677dd9617a6761ba8ea5aee1881121ec7132afbbe8454f7f0
|
|
4
|
+
data.tar.gz: cef251c802032e7fae68d5fa6ed6719a4ad844793c42767fe48b3a2d6ada2fe4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50afd3e2cadeab5525ab2c0444444407358550a2331ea9f7613661435e67040f3f536de3f27eb2971c704f68be8f6ae85a19f745b809cb37c5bc1341e479456a
|
|
7
|
+
data.tar.gz: 49313245487b6d5314209111629c9478797fe55c68bd5a99c04959282d4e28fa7fd07858f45330d8675ff8e0ce2b273f2b1198be742b2f2845a32eb4bc3ac597
|
|
@@ -17,10 +17,13 @@ module Moov
|
|
|
17
17
|
|
|
18
18
|
field :account_id, ::String, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('accountID'), required: true } }
|
|
19
19
|
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
field :status, Models::Components::BankAccountStatus, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('status'), required: true, 'decoder': ::Moov::Utils.enum_from_string(Models::Components::BankAccountStatus, false) } }
|
|
21
|
+
|
|
22
|
+
sig { params(bank_account_id: ::String, account_id: ::String, status: Models::Components::BankAccountStatus).void }
|
|
23
|
+
def initialize(bank_account_id:, account_id:, status:)
|
|
22
24
|
@bank_account_id = bank_account_id
|
|
23
25
|
@account_id = account_id
|
|
26
|
+
@status = status
|
|
24
27
|
end
|
|
25
28
|
|
|
26
29
|
sig { params(other: T.untyped).returns(T::Boolean) }
|
|
@@ -28,6 +31,7 @@ module Moov
|
|
|
28
31
|
return false unless other.is_a? self.class
|
|
29
32
|
return false unless @bank_account_id == other.bank_account_id
|
|
30
33
|
return false unless @account_id == other.account_id
|
|
34
|
+
return false unless @status == other.status
|
|
31
35
|
true
|
|
32
36
|
end
|
|
33
37
|
end
|
|
@@ -88,9 +88,9 @@ module Moov
|
|
|
88
88
|
end
|
|
89
89
|
@language = 'ruby'
|
|
90
90
|
@openapi_doc_version = 'v2025.01.00'
|
|
91
|
-
@sdk_version = '25.2.
|
|
92
|
-
@gen_version = '2.
|
|
93
|
-
@user_agent = 'speakeasy-sdk/ruby 25.2.
|
|
91
|
+
@sdk_version = '25.2.7'
|
|
92
|
+
@gen_version = '2.884.0'
|
|
93
|
+
@user_agent = 'speakeasy-sdk/ruby 25.2.7 2.884.0 v2025.01.00 moov_ruby'
|
|
94
94
|
end
|
|
95
95
|
|
|
96
96
|
sig { returns([String, T::Hash[Symbol, String]]) }
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: moov_ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 25.2.
|
|
4
|
+
version: 25.2.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Speakeasy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-05-
|
|
11
|
+
date: 2026-05-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: base64
|