moov_ruby 26.4.0.pre.dev.14 → 26.4.0.pre.dev.15
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 +4 -4
- data/lib/moov/models/components/accountnameverification.rb +4 -4
- data/lib/moov/models/components/card.rb +3 -2
- data/lib/moov/models/components/cardaccountupdater.rb +1 -1
- data/lib/moov/models/components/cardaddress.rb +6 -6
- data/lib/moov/models/components/cardexpiration.rb +2 -2
- data/lib/moov/models/components/cardverification.rb +6 -4
- data/lib/moov/models/components/cardverificationresult.rb +1 -1
- data/lib/moov/models/components/linkcard.rb +10 -7
- data/lib/moov/models/components/paymentmethodscard.rb +3 -2
- data/lib/moov/models/components/transferpaymentmethodscard.rb +3 -2
- data/lib/moov/models/components/updatecard.rb +9 -6
- data/lib/moov/models/components/updatecardaddress.rb +6 -6
- data/lib/moov/models/components/updatecardexpiration.rb +2 -2
- data/lib/moov/sdkconfiguration.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 05b9ef7725a81f8968e14c3d118448c5446bdf734ea69e7dd2ceee5030f477f2
|
|
4
|
+
data.tar.gz: 7bc842d3589e07e2f8d2e0dc3b0f802bc342cb29bc1730b0b89e07fe254e4a64
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c76a5944bcea963b26be781684512f0bb8d4b220386b99240483fe6f3f4395c6c105f55c8f233051d041c1844e092c5662329b51a40c6f3ad0ee1a04f76dfb38
|
|
7
|
+
data.tar.gz: cf9146b79e08bb8cd6fa3c7de646f275f8fe434c729a436cca44fa8b8a46be218f25a9c7a4ac44aef422f4dc9462dd249b12fd4b3edf049daacc4bd392740323
|
|
@@ -12,13 +12,13 @@ module Moov
|
|
|
12
12
|
extend T::Sig
|
|
13
13
|
include Crystalline::MetadataFields
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
# Verification result of the cardholder's first name.
|
|
16
16
|
field :first_name, Crystalline::Nilable.new(Models::Components::CardVerificationResult), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('firstName'), 'decoder': ::Moov::Utils.enum_from_string(Models::Components::CardVerificationResult, true) } }
|
|
17
|
-
|
|
17
|
+
# Verification result of the cardholder's last name.
|
|
18
18
|
field :last_name, Crystalline::Nilable.new(Models::Components::CardVerificationResult), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('lastName'), 'decoder': ::Moov::Utils.enum_from_string(Models::Components::CardVerificationResult, true) } }
|
|
19
|
-
|
|
19
|
+
# Verification result of the cardholder's middle name.
|
|
20
20
|
field :middle_name, Crystalline::Nilable.new(Models::Components::CardVerificationResult), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('middleName'), 'decoder': ::Moov::Utils.enum_from_string(Models::Components::CardVerificationResult, true) } }
|
|
21
|
-
|
|
21
|
+
# Verification result of the cardholder's full name.
|
|
22
22
|
field :full_name, Crystalline::Nilable.new(Models::Components::CardVerificationResult), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('fullName'), 'decoder': ::Moov::Utils.enum_from_string(Models::Components::CardVerificationResult, true) } }
|
|
23
23
|
|
|
24
24
|
sig { params(first_name: T.nilable(Models::Components::CardVerificationResult), last_name: T.nilable(Models::Components::CardVerificationResult), middle_name: T.nilable(Models::Components::CardVerificationResult), full_name: T.nilable(Models::Components::CardVerificationResult)).void }
|
|
@@ -28,7 +28,7 @@ module Moov
|
|
|
28
28
|
field :bin, ::String, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('bin'), required: true } }
|
|
29
29
|
# The expiration date of the card or token.
|
|
30
30
|
field :expiration, Models::Components::CardExpiration, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('expiration'), required: true } }
|
|
31
|
-
|
|
31
|
+
# The billing address associated with the card.
|
|
32
32
|
field :billing_address, Models::Components::CardAddress, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('billingAddress'), required: true } }
|
|
33
33
|
# The results of submitting cardholder data to a card network for verification.
|
|
34
34
|
field :card_verification, Models::Components::CardVerification, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('cardVerification'), required: true } }
|
|
@@ -53,7 +53,8 @@ module Moov
|
|
|
53
53
|
field :regulated, Crystalline::Nilable.new(Crystalline::Boolean.new), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('regulated') } }
|
|
54
54
|
# Indicates cardholder has authorized card to be stored for future payments.
|
|
55
55
|
field :card_on_file, Crystalline::Nilable.new(Crystalline::Boolean.new), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('cardOnFile') } }
|
|
56
|
-
|
|
56
|
+
# Merchant account whose details (statement descriptor, address, etc.) are used for the card verification authorization.
|
|
57
|
+
# If omitted, the partner account's details are used instead.
|
|
57
58
|
field :merchant_account_id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('merchantAccountID') } }
|
|
58
59
|
# The results of the most recent card update request.
|
|
59
60
|
field :card_account_updater, Crystalline::Nilable.new(Models::Components::CardAccountUpdater), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('cardAccountUpdater') } }
|
|
@@ -12,7 +12,7 @@ module Moov
|
|
|
12
12
|
extend T::Sig
|
|
13
13
|
include Crystalline::MetadataFields
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
# Timestamp from the card network indicating when the card update was processed.
|
|
16
16
|
field :updated_on, Crystalline::Nilable.new(::DateTime), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('updatedOn'), 'decoder': ::Moov::Utils.datetime_from_iso_format(true) } }
|
|
17
17
|
# The results of the card update request.
|
|
18
18
|
field :update_type, Crystalline::Nilable.new(Models::Components::CardUpdateReason), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('updateType'), 'decoder': ::Moov::Utils.enum_from_string(Models::Components::CardUpdateReason, true) } }
|
|
@@ -12,17 +12,17 @@ module Moov
|
|
|
12
12
|
extend T::Sig
|
|
13
13
|
include Crystalline::MetadataFields
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
# Postal or ZIP code.
|
|
16
16
|
field :postal_code, ::String, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('postalCode'), required: true } }
|
|
17
|
-
|
|
17
|
+
# Street address line 1.
|
|
18
18
|
field :address_line1, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('addressLine1') } }
|
|
19
|
-
|
|
19
|
+
# Street address line 2 (e.g., apartment or suite number).
|
|
20
20
|
field :address_line2, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('addressLine2') } }
|
|
21
|
-
|
|
21
|
+
# City name.
|
|
22
22
|
field :city, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('city') } }
|
|
23
|
-
|
|
23
|
+
# Two-letter state or province code.
|
|
24
24
|
field :state_or_province, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('stateOrProvince') } }
|
|
25
|
-
|
|
25
|
+
# Two-letter ISO 3166-1 country code.
|
|
26
26
|
field :country, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('country') } }
|
|
27
27
|
|
|
28
28
|
sig { params(postal_code: ::String, address_line1: T.nilable(::String), address_line2: T.nilable(::String), city: T.nilable(::String), state_or_province: T.nilable(::String), country: T.nilable(::String)).void }
|
|
@@ -12,9 +12,9 @@ module Moov
|
|
|
12
12
|
extend T::Sig
|
|
13
13
|
include Crystalline::MetadataFields
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
# Two-digit month the card expires.
|
|
16
16
|
field :month, ::String, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('month'), required: true } }
|
|
17
|
-
|
|
17
|
+
# Two-digit year the card expires.
|
|
18
18
|
field :year, ::String, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('year'), required: true } }
|
|
19
19
|
|
|
20
20
|
sig { params(month: ::String, year: ::String).void }
|
|
@@ -12,13 +12,15 @@ module Moov
|
|
|
12
12
|
extend T::Sig
|
|
13
13
|
include Crystalline::MetadataFields
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
# Verification result of the card's CVV.
|
|
16
16
|
field :cvv, Models::Components::CardVerificationResult, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('cvv'), required: true, 'decoder': ::Moov::Utils.enum_from_string(Models::Components::CardVerificationResult, false) } }
|
|
17
|
-
|
|
17
|
+
# Verification result of the billing address line 1.
|
|
18
|
+
# Derived from the same AVS code as `postalCode`; the card network returns a single code covering both address fields.
|
|
18
19
|
field :address_line1, Models::Components::CardVerificationResult, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('addressLine1'), required: true, 'decoder': ::Moov::Utils.enum_from_string(Models::Components::CardVerificationResult, false) } }
|
|
19
|
-
|
|
20
|
+
# Verification result of the billing address postal code.
|
|
21
|
+
# Derived from the same AVS code as `addressLine1`; the card network returns a single code covering both address fields.
|
|
20
22
|
field :postal_code, Models::Components::CardVerificationResult, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('postalCode'), required: true, 'decoder': ::Moov::Utils.enum_from_string(Models::Components::CardVerificationResult, false) } }
|
|
21
|
-
#
|
|
23
|
+
# Verification results of the cardholder's name, broken down by name component.
|
|
22
24
|
field :account_name, Crystalline::Nilable.new(Models::Components::AccountNameVerification), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('accountName') } }
|
|
23
25
|
|
|
24
26
|
sig { params(cvv: Models::Components::CardVerificationResult, address_line1: Models::Components::CardVerificationResult, postal_code: Models::Components::CardVerificationResult, account_name: T.nilable(Models::Components::AccountNameVerification)).void }
|
|
@@ -12,25 +12,28 @@ module Moov
|
|
|
12
12
|
extend T::Sig
|
|
13
13
|
include Crystalline::MetadataFields
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
# The full card number (PAN).
|
|
16
16
|
field :card_number, ::String, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('cardNumber'), required: true } }
|
|
17
|
-
|
|
17
|
+
# The card's 3- or 4-digit card verification value.
|
|
18
18
|
field :card_cvv, ::String, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('cardCvv'), required: true } }
|
|
19
19
|
# The expiration date of the card or token.
|
|
20
20
|
field :expiration, Models::Components::CardExpiration, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('expiration'), required: true } }
|
|
21
|
-
|
|
21
|
+
# The billing address associated with the card.
|
|
22
22
|
field :billing_address, Models::Components::CardAddress, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('billingAddress'), required: true } }
|
|
23
23
|
# Wraps a compact-serialized JSON Web Encryption (JWE) token used for secure transmission of sensitive data (e.g., PCI information) through intermediaries.
|
|
24
24
|
# This token is encrypted using the public key from /end-to-end-keys and wraps an AES key. For details and examples, refer to our
|
|
25
25
|
# [GitHub repository](https://github.com/moovfinancial/moov-go/blob/main/examples/e2ee/e2ee_test.go).
|
|
26
26
|
field :e2ee, Crystalline::Nilable.new(Models::Components::E2EEToken), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('e2ee') } }
|
|
27
|
-
|
|
27
|
+
# The name of the cardholder as it appears on the card.
|
|
28
28
|
field :holder_name, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('holderName') } }
|
|
29
|
-
|
|
29
|
+
# Indicates cardholder has authorized card to be stored for future payments. (e.g., recurring payments).
|
|
30
|
+
# If true and no `merchantAccountID` is provided, the partner account's ID is used as the merchant account for verification.
|
|
30
31
|
field :card_on_file, Crystalline::Nilable.new(Crystalline::Boolean.new), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('cardOnFile') } }
|
|
31
|
-
|
|
32
|
+
# Merchant account whose details (statement descriptor, address, etc.) are used for the card verification authorization.
|
|
33
|
+
# If omitted, the partner account's details are used instead.
|
|
32
34
|
field :merchant_account_id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('merchantAccountID') } }
|
|
33
|
-
|
|
35
|
+
# If true, submits the cardholder's name to the card network for verification as part of the $0 authorization.
|
|
36
|
+
# Only supported for Visa and Mastercard; requesting name verification for American Express or Discover will return an error.
|
|
34
37
|
field :verify_name, Crystalline::Nilable.new(Crystalline::Boolean.new), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('verifyName') } }
|
|
35
38
|
|
|
36
39
|
sig { params(card_number: ::String, card_cvv: ::String, expiration: Models::Components::CardExpiration, billing_address: Models::Components::CardAddress, e2ee: T.nilable(Models::Components::E2EEToken), holder_name: T.nilable(::String), card_on_file: T.nilable(T::Boolean), merchant_account_id: T.nilable(::String), verify_name: T.nilable(T::Boolean)).void }
|
|
@@ -28,7 +28,7 @@ module Moov
|
|
|
28
28
|
field :bin, ::String, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('bin'), required: true } }
|
|
29
29
|
# The expiration date of the card or token.
|
|
30
30
|
field :expiration, Models::Components::CardExpiration, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('expiration'), required: true } }
|
|
31
|
-
|
|
31
|
+
# The billing address associated with the card.
|
|
32
32
|
field :billing_address, Models::Components::CardAddress, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('billingAddress'), required: true } }
|
|
33
33
|
# The results of submitting cardholder data to a card network for verification.
|
|
34
34
|
field :card_verification, Models::Components::CardVerification, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('cardVerification'), required: true } }
|
|
@@ -40,7 +40,8 @@ module Moov
|
|
|
40
40
|
field :issuer_country, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('issuerCountry') } }
|
|
41
41
|
# Indicates cardholder has authorized card to be stored for future payments.
|
|
42
42
|
field :card_on_file, Crystalline::Nilable.new(Crystalline::Boolean.new), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('cardOnFile') } }
|
|
43
|
-
|
|
43
|
+
# Merchant account whose details (statement descriptor, address, etc.) are used for the card verification authorization.
|
|
44
|
+
# If omitted, the partner account's details are used instead.
|
|
44
45
|
field :merchant_account_id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('merchantAccountID') } }
|
|
45
46
|
# The results of the most recent card update request.
|
|
46
47
|
field :card_account_updater, Crystalline::Nilable.new(Models::Components::CardAccountUpdater), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('cardAccountUpdater') } }
|
|
@@ -28,7 +28,7 @@ module Moov
|
|
|
28
28
|
field :bin, ::String, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('bin'), required: true } }
|
|
29
29
|
# The expiration date of the card or token.
|
|
30
30
|
field :expiration, Models::Components::CardExpiration, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('expiration'), required: true } }
|
|
31
|
-
|
|
31
|
+
# The billing address associated with the card.
|
|
32
32
|
field :billing_address, Models::Components::CardAddress, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('billingAddress'), required: true } }
|
|
33
33
|
# The results of submitting cardholder data to a card network for verification.
|
|
34
34
|
field :card_verification, Models::Components::CardVerification, { 'format_json': { 'letter_case': ::Moov::Utils.field_name('cardVerification'), required: true } }
|
|
@@ -40,7 +40,8 @@ module Moov
|
|
|
40
40
|
field :issuer_country, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('issuerCountry') } }
|
|
41
41
|
# Indicates cardholder has authorized card to be stored for future payments.
|
|
42
42
|
field :card_on_file, Crystalline::Nilable.new(Crystalline::Boolean.new), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('cardOnFile') } }
|
|
43
|
-
|
|
43
|
+
# Merchant account whose details (statement descriptor, address, etc.) are used for the card verification authorization.
|
|
44
|
+
# If omitted, the partner account's details are used instead.
|
|
44
45
|
field :merchant_account_id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('merchantAccountID') } }
|
|
45
46
|
# The results of the most recent card update request.
|
|
46
47
|
field :card_account_updater, Crystalline::Nilable.new(Models::Components::CardAccountUpdater), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('cardAccountUpdater') } }
|
|
@@ -16,19 +16,22 @@ module Moov
|
|
|
16
16
|
# This token is encrypted using the public key from /end-to-end-keys and wraps an AES key. For details and examples, refer to our
|
|
17
17
|
# [GitHub repository](https://github.com/moovfinancial/moov-go/blob/main/examples/e2ee/e2ee_test.go).
|
|
18
18
|
field :e2ee, Crystalline::Nilable.new(Models::Components::E2EETokenUpdate), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('e2ee') } }
|
|
19
|
-
|
|
19
|
+
# Updated billing address to store on file for the card.
|
|
20
20
|
field :billing_address, Crystalline::Nilable.new(Models::Components::UpdateCardAddress), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('billingAddress') } }
|
|
21
21
|
|
|
22
22
|
field :expiration, Crystalline::Nilable.new(Models::Components::UpdateCardExpiration), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('expiration') } }
|
|
23
|
-
|
|
23
|
+
# The card's 3- or 4-digit card verification value. Providing this triggers a new $0 verification authorization, which performs both CVV and address verification.
|
|
24
24
|
field :card_cvv, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('cardCvv') } }
|
|
25
|
-
|
|
25
|
+
# Indicates cardholder has authorized card to be stored for future payments (e.g., recurring payments).
|
|
26
|
+
# If true and no `merchantAccountID` is provided, the partner account's ID is automatically used as the merchant account for verification.
|
|
26
27
|
field :card_on_file, Crystalline::Nilable.new(Crystalline::Boolean.new), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('cardOnFile') } }
|
|
27
|
-
|
|
28
|
+
# Merchant account whose details (statement descriptor, address, etc.) are used for the card verification authorization.
|
|
29
|
+
# If omitted, the partner account's details are used instead.
|
|
28
30
|
field :merchant_account_id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('merchantAccountID') } }
|
|
29
|
-
|
|
31
|
+
# If true, submits the cardholder's name to the card network for verification as part of the $0 authorization.
|
|
32
|
+
# Only supported for Visa and Mastercard; requesting name verification for American Express or Discover will return an error.
|
|
30
33
|
field :verify_name, Crystalline::Nilable.new(Crystalline::Boolean.new), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('verifyName') } }
|
|
31
|
-
|
|
34
|
+
# Updated name of the cardholder as it appears on the card.
|
|
32
35
|
field :holder_name, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('holderName') } }
|
|
33
36
|
|
|
34
37
|
sig { params(e2ee: T.nilable(Models::Components::E2EETokenUpdate), billing_address: T.nilable(Models::Components::UpdateCardAddress), expiration: T.nilable(Models::Components::UpdateCardExpiration), card_cvv: T.nilable(::String), card_on_file: T.nilable(T::Boolean), merchant_account_id: T.nilable(::String), verify_name: T.nilable(T::Boolean), holder_name: T.nilable(::String)).void }
|
|
@@ -12,17 +12,17 @@ module Moov
|
|
|
12
12
|
extend T::Sig
|
|
13
13
|
include Crystalline::MetadataFields
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
# Street address line 1.
|
|
16
16
|
field :address_line1, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('addressLine1') } }
|
|
17
|
-
|
|
17
|
+
# Street address line 2 (e.g., apartment or suite number).
|
|
18
18
|
field :address_line2, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('addressLine2') } }
|
|
19
|
-
|
|
19
|
+
# City name.
|
|
20
20
|
field :city, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('city') } }
|
|
21
|
-
|
|
21
|
+
# Two-letter state or province code.
|
|
22
22
|
field :state_or_province, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('stateOrProvince') } }
|
|
23
|
-
|
|
23
|
+
# Postal or ZIP code.
|
|
24
24
|
field :postal_code, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('postalCode') } }
|
|
25
|
-
|
|
25
|
+
# Two-letter ISO 3166-1 country code.
|
|
26
26
|
field :country, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('country') } }
|
|
27
27
|
|
|
28
28
|
sig { params(address_line1: T.nilable(::String), address_line2: T.nilable(::String), city: T.nilable(::String), state_or_province: T.nilable(::String), postal_code: T.nilable(::String), country: T.nilable(::String)).void }
|
|
@@ -12,9 +12,9 @@ module Moov
|
|
|
12
12
|
extend T::Sig
|
|
13
13
|
include Crystalline::MetadataFields
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
# Two-digit month the card expires.
|
|
16
16
|
field :month, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('month') } }
|
|
17
|
-
|
|
17
|
+
# Two-digit year the card expires.
|
|
18
18
|
field :year, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Moov::Utils.field_name('year') } }
|
|
19
19
|
|
|
20
20
|
sig { params(month: T.nilable(::String), year: T.nilable(::String)).void }
|
|
@@ -89,9 +89,9 @@ module Moov
|
|
|
89
89
|
end
|
|
90
90
|
@language = 'ruby'
|
|
91
91
|
@openapi_doc_version = 'v2026.04.00'
|
|
92
|
-
@sdk_version = '26.4.0-dev.
|
|
93
|
-
@gen_version = '2.
|
|
94
|
-
@user_agent = 'speakeasy-sdk/ruby 26.4.0-dev.
|
|
92
|
+
@sdk_version = '26.4.0-dev.15'
|
|
93
|
+
@gen_version = '2.866.0'
|
|
94
|
+
@user_agent = 'speakeasy-sdk/ruby 26.4.0-dev.15 2.866.0 v2026.04.00 moov_ruby'
|
|
95
95
|
end
|
|
96
96
|
|
|
97
97
|
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: 26.4.0.pre.dev.
|
|
4
|
+
version: 26.4.0.pre.dev.15
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Speakeasy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-03-
|
|
11
|
+
date: 2026-03-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: base64
|