increase 1.184.0 → 1.186.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 +4 -4
- data/CHANGELOG.md +16 -0
- data/README.md +1 -1
- data/lib/increase/models/card_dispute.rb +25 -1
- data/lib/increase/models/card_dispute_withdraw_params.rb +9 -1
- data/lib/increase/models/card_payment.rb +205 -5
- data/lib/increase/models/declined_transaction.rb +41 -1
- data/lib/increase/models/pending_transaction.rb +43 -1
- data/lib/increase/models/real_time_decision.rb +82 -2
- data/lib/increase/models/transaction.rb +41 -1
- data/lib/increase/resources/card_disputes.rb +6 -2
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_dispute.rbi +47 -3
- data/rbi/increase/models/card_dispute_withdraw_params.rbi +21 -5
- data/rbi/increase/models/card_payment.rbi +425 -15
- data/rbi/increase/models/declined_transaction.rbi +85 -3
- data/rbi/increase/models/pending_transaction.rbi +85 -3
- data/rbi/increase/models/real_time_decision.rbi +170 -6
- data/rbi/increase/models/transaction.rbi +85 -3
- data/rbi/increase/resources/card_disputes.rbi +3 -0
- data/sig/increase/models/card_dispute.rbs +18 -3
- data/sig/increase/models/card_dispute_withdraw_params.rbs +13 -3
- data/sig/increase/models/card_payment.rbs +175 -15
- data/sig/increase/models/declined_transaction.rbs +35 -3
- data/sig/increase/models/pending_transaction.rbs +35 -3
- data/sig/increase/models/real_time_decision.rbs +70 -6
- data/sig/increase/models/transaction.rbs +35 -3
- data/sig/increase/resources/card_disputes.rbs +1 -0
- 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: a4fbf7793f37f9602d17e00fed08177201bfa218a5d447fc46052afddb9c8b68
|
|
4
|
+
data.tar.gz: 18016533b831ce5400c9feb459c30053630fb4029d2b589b6eb8de3b3aaf5a2b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 51eea761796df5bf27aaeaada278c1cd14a8fd30412927db4f767939545e743568e2a99671755843285653c1f6ee34ddd7c3f520a4607c0554e4b187cb2871ef
|
|
7
|
+
data.tar.gz: d491e3604e0a5db7f0e43695e0bc584590f486eda668f823b3e8c5866103e9ab91da6a120e6c1aa52a13ee9e7d891e0077ecf33d3a40b19926e63bbeedaaf471
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.186.0 (2026-01-28)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.185.0...v1.186.0](https://github.com/Increase/increase-ruby/compare/v1.185.0...v1.186.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([390da85](https://github.com/Increase/increase-ruby/commit/390da85a509b0b81f7fd823cc5b956765dc1ba80))
|
|
10
|
+
|
|
11
|
+
## 1.185.0 (2026-01-27)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.184.0...v1.185.0](https://github.com/Increase/increase-ruby/compare/v1.184.0...v1.185.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([e198c3e](https://github.com/Increase/increase-ruby/commit/e198c3e11f98040cfe817eaac4d5f9d3aa3124a5))
|
|
18
|
+
|
|
3
19
|
## 1.184.0 (2026-01-27)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.183.0...v1.184.0](https://github.com/Increase/increase-ruby/compare/v1.183.0...v1.184.0)
|
data/README.md
CHANGED
|
@@ -93,7 +93,14 @@ module Increase
|
|
|
93
93
|
# @return [Increase::Models::CardDispute::Win, nil]
|
|
94
94
|
required :win, -> { Increase::CardDispute::Win }, nil?: true
|
|
95
95
|
|
|
96
|
-
# @!
|
|
96
|
+
# @!attribute withdrawal
|
|
97
|
+
# If the Card Dispute has been withdrawn, this will contain details of the
|
|
98
|
+
# withdrawal.
|
|
99
|
+
#
|
|
100
|
+
# @return [Increase::Models::CardDispute::Withdrawal, nil]
|
|
101
|
+
required :withdrawal, -> { Increase::CardDispute::Withdrawal }, nil?: true
|
|
102
|
+
|
|
103
|
+
# @!method initialize(id:, amount:, card_id:, created_at:, disputed_transaction_id:, idempotency_key:, loss:, network:, status:, type:, user_submission_required_by:, visa:, win:, withdrawal:)
|
|
97
104
|
# Some parameter documentations has been truncated, see
|
|
98
105
|
# {Increase::Models::CardDispute} for more details.
|
|
99
106
|
#
|
|
@@ -125,6 +132,8 @@ module Increase
|
|
|
125
132
|
# @param visa [Increase::Models::CardDispute::Visa, nil] Card Dispute information for card payments processed over Visa's network. This f
|
|
126
133
|
#
|
|
127
134
|
# @param win [Increase::Models::CardDispute::Win, nil] If the Card Dispute's status is `won`, this will contain details of the won disp
|
|
135
|
+
#
|
|
136
|
+
# @param withdrawal [Increase::Models::CardDispute::Withdrawal, nil] If the Card Dispute has been withdrawn, this will contain details of the withdra
|
|
128
137
|
|
|
129
138
|
# @see Increase::Models::CardDispute#loss
|
|
130
139
|
class Loss < Increase::Internal::Type::BaseModel
|
|
@@ -5281,6 +5290,21 @@ module Increase
|
|
|
5281
5290
|
#
|
|
5282
5291
|
# @param won_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which th
|
|
5283
5292
|
end
|
|
5293
|
+
|
|
5294
|
+
# @see Increase::Models::CardDispute#withdrawal
|
|
5295
|
+
class Withdrawal < Increase::Internal::Type::BaseModel
|
|
5296
|
+
# @!attribute explanation
|
|
5297
|
+
# The explanation for the withdrawal of the Card Dispute.
|
|
5298
|
+
#
|
|
5299
|
+
# @return [String, nil]
|
|
5300
|
+
required :explanation, String, nil?: true
|
|
5301
|
+
|
|
5302
|
+
# @!method initialize(explanation:)
|
|
5303
|
+
# If the Card Dispute has been withdrawn, this will contain details of the
|
|
5304
|
+
# withdrawal.
|
|
5305
|
+
#
|
|
5306
|
+
# @param explanation [String, nil] The explanation for the withdrawal of the Card Dispute.
|
|
5307
|
+
end
|
|
5284
5308
|
end
|
|
5285
5309
|
end
|
|
5286
5310
|
end
|
|
@@ -7,7 +7,15 @@ module Increase
|
|
|
7
7
|
extend Increase::Internal::Type::RequestParameters::Converter
|
|
8
8
|
include Increase::Internal::Type::RequestParameters
|
|
9
9
|
|
|
10
|
-
# @!
|
|
10
|
+
# @!attribute explanation
|
|
11
|
+
# The explanation for withdrawing the Card Dispute.
|
|
12
|
+
#
|
|
13
|
+
# @return [String, nil]
|
|
14
|
+
optional :explanation, String
|
|
15
|
+
|
|
16
|
+
# @!method initialize(explanation: nil, request_options: {})
|
|
17
|
+
# @param explanation [String] The explanation for withdrawing the Card Dispute.
|
|
18
|
+
#
|
|
11
19
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
|
|
12
20
|
end
|
|
13
21
|
end
|
|
@@ -1699,7 +1699,15 @@ module Increase
|
|
|
1699
1699
|
required :cardholder_address,
|
|
1700
1700
|
-> { Increase::CardPayment::Element::CardAuthorization::Verification::CardholderAddress }
|
|
1701
1701
|
|
|
1702
|
-
# @!
|
|
1702
|
+
# @!attribute cardholder_name
|
|
1703
|
+
# Cardholder name provided in the authorization request.
|
|
1704
|
+
#
|
|
1705
|
+
# @return [Increase::Models::CardPayment::Element::CardAuthorization::Verification::CardholderName, nil]
|
|
1706
|
+
required :cardholder_name,
|
|
1707
|
+
-> { Increase::CardPayment::Element::CardAuthorization::Verification::CardholderName },
|
|
1708
|
+
nil?: true
|
|
1709
|
+
|
|
1710
|
+
# @!method initialize(card_verification_code:, cardholder_address:, cardholder_name:)
|
|
1703
1711
|
# Some parameter documentations has been truncated, see
|
|
1704
1712
|
# {Increase::Models::CardPayment::Element::CardAuthorization::Verification} for
|
|
1705
1713
|
# more details.
|
|
@@ -1709,6 +1717,8 @@ module Increase
|
|
|
1709
1717
|
# @param card_verification_code [Increase::Models::CardPayment::Element::CardAuthorization::Verification::CardVerificationCode] Fields related to verification of the Card Verification Code, a 3-digit code on
|
|
1710
1718
|
#
|
|
1711
1719
|
# @param cardholder_address [Increase::Models::CardPayment::Element::CardAuthorization::Verification::CardholderAddress] Cardholder address provided in the authorization request and the address on file
|
|
1720
|
+
#
|
|
1721
|
+
# @param cardholder_name [Increase::Models::CardPayment::Element::CardAuthorization::Verification::CardholderName, nil] Cardholder name provided in the authorization request.
|
|
1712
1722
|
|
|
1713
1723
|
# @see Increase::Models::CardPayment::Element::CardAuthorization::Verification#card_verification_code
|
|
1714
1724
|
class CardVerificationCode < Increase::Internal::Type::BaseModel
|
|
@@ -1825,6 +1835,36 @@ module Increase
|
|
|
1825
1835
|
# @return [Array<Symbol>]
|
|
1826
1836
|
end
|
|
1827
1837
|
end
|
|
1838
|
+
|
|
1839
|
+
# @see Increase::Models::CardPayment::Element::CardAuthorization::Verification#cardholder_name
|
|
1840
|
+
class CardholderName < Increase::Internal::Type::BaseModel
|
|
1841
|
+
# @!attribute provided_first_name
|
|
1842
|
+
# The first name provided for verification in the authorization request.
|
|
1843
|
+
#
|
|
1844
|
+
# @return [String, nil]
|
|
1845
|
+
required :provided_first_name, String, nil?: true
|
|
1846
|
+
|
|
1847
|
+
# @!attribute provided_last_name
|
|
1848
|
+
# The last name provided for verification in the authorization request.
|
|
1849
|
+
#
|
|
1850
|
+
# @return [String, nil]
|
|
1851
|
+
required :provided_last_name, String, nil?: true
|
|
1852
|
+
|
|
1853
|
+
# @!attribute provided_middle_name
|
|
1854
|
+
# The middle name provided for verification in the authorization request.
|
|
1855
|
+
#
|
|
1856
|
+
# @return [String, nil]
|
|
1857
|
+
required :provided_middle_name, String, nil?: true
|
|
1858
|
+
|
|
1859
|
+
# @!method initialize(provided_first_name:, provided_last_name:, provided_middle_name:)
|
|
1860
|
+
# Cardholder name provided in the authorization request.
|
|
1861
|
+
#
|
|
1862
|
+
# @param provided_first_name [String, nil] The first name provided for verification in the authorization request.
|
|
1863
|
+
#
|
|
1864
|
+
# @param provided_last_name [String, nil] The last name provided for verification in the authorization request.
|
|
1865
|
+
#
|
|
1866
|
+
# @param provided_middle_name [String, nil] The middle name provided for verification in the authorization request.
|
|
1867
|
+
end
|
|
1828
1868
|
end
|
|
1829
1869
|
end
|
|
1830
1870
|
|
|
@@ -2849,7 +2889,15 @@ module Increase
|
|
|
2849
2889
|
required :cardholder_address,
|
|
2850
2890
|
-> { Increase::CardPayment::Element::CardBalanceInquiry::Verification::CardholderAddress }
|
|
2851
2891
|
|
|
2852
|
-
# @!
|
|
2892
|
+
# @!attribute cardholder_name
|
|
2893
|
+
# Cardholder name provided in the authorization request.
|
|
2894
|
+
#
|
|
2895
|
+
# @return [Increase::Models::CardPayment::Element::CardBalanceInquiry::Verification::CardholderName, nil]
|
|
2896
|
+
required :cardholder_name,
|
|
2897
|
+
-> { Increase::CardPayment::Element::CardBalanceInquiry::Verification::CardholderName },
|
|
2898
|
+
nil?: true
|
|
2899
|
+
|
|
2900
|
+
# @!method initialize(card_verification_code:, cardholder_address:, cardholder_name:)
|
|
2853
2901
|
# Some parameter documentations has been truncated, see
|
|
2854
2902
|
# {Increase::Models::CardPayment::Element::CardBalanceInquiry::Verification} for
|
|
2855
2903
|
# more details.
|
|
@@ -2859,6 +2907,8 @@ module Increase
|
|
|
2859
2907
|
# @param card_verification_code [Increase::Models::CardPayment::Element::CardBalanceInquiry::Verification::CardVerificationCode] Fields related to verification of the Card Verification Code, a 3-digit code on
|
|
2860
2908
|
#
|
|
2861
2909
|
# @param cardholder_address [Increase::Models::CardPayment::Element::CardBalanceInquiry::Verification::CardholderAddress] Cardholder address provided in the authorization request and the address on file
|
|
2910
|
+
#
|
|
2911
|
+
# @param cardholder_name [Increase::Models::CardPayment::Element::CardBalanceInquiry::Verification::CardholderName, nil] Cardholder name provided in the authorization request.
|
|
2862
2912
|
|
|
2863
2913
|
# @see Increase::Models::CardPayment::Element::CardBalanceInquiry::Verification#card_verification_code
|
|
2864
2914
|
class CardVerificationCode < Increase::Internal::Type::BaseModel
|
|
@@ -2975,6 +3025,36 @@ module Increase
|
|
|
2975
3025
|
# @return [Array<Symbol>]
|
|
2976
3026
|
end
|
|
2977
3027
|
end
|
|
3028
|
+
|
|
3029
|
+
# @see Increase::Models::CardPayment::Element::CardBalanceInquiry::Verification#cardholder_name
|
|
3030
|
+
class CardholderName < Increase::Internal::Type::BaseModel
|
|
3031
|
+
# @!attribute provided_first_name
|
|
3032
|
+
# The first name provided for verification in the authorization request.
|
|
3033
|
+
#
|
|
3034
|
+
# @return [String, nil]
|
|
3035
|
+
required :provided_first_name, String, nil?: true
|
|
3036
|
+
|
|
3037
|
+
# @!attribute provided_last_name
|
|
3038
|
+
# The last name provided for verification in the authorization request.
|
|
3039
|
+
#
|
|
3040
|
+
# @return [String, nil]
|
|
3041
|
+
required :provided_last_name, String, nil?: true
|
|
3042
|
+
|
|
3043
|
+
# @!attribute provided_middle_name
|
|
3044
|
+
# The middle name provided for verification in the authorization request.
|
|
3045
|
+
#
|
|
3046
|
+
# @return [String, nil]
|
|
3047
|
+
required :provided_middle_name, String, nil?: true
|
|
3048
|
+
|
|
3049
|
+
# @!method initialize(provided_first_name:, provided_last_name:, provided_middle_name:)
|
|
3050
|
+
# Cardholder name provided in the authorization request.
|
|
3051
|
+
#
|
|
3052
|
+
# @param provided_first_name [String, nil] The first name provided for verification in the authorization request.
|
|
3053
|
+
#
|
|
3054
|
+
# @param provided_last_name [String, nil] The last name provided for verification in the authorization request.
|
|
3055
|
+
#
|
|
3056
|
+
# @param provided_middle_name [String, nil] The middle name provided for verification in the authorization request.
|
|
3057
|
+
end
|
|
2978
3058
|
end
|
|
2979
3059
|
end
|
|
2980
3060
|
|
|
@@ -4121,7 +4201,15 @@ module Increase
|
|
|
4121
4201
|
required :cardholder_address,
|
|
4122
4202
|
-> { Increase::CardPayment::Element::CardDecline::Verification::CardholderAddress }
|
|
4123
4203
|
|
|
4124
|
-
# @!
|
|
4204
|
+
# @!attribute cardholder_name
|
|
4205
|
+
# Cardholder name provided in the authorization request.
|
|
4206
|
+
#
|
|
4207
|
+
# @return [Increase::Models::CardPayment::Element::CardDecline::Verification::CardholderName, nil]
|
|
4208
|
+
required :cardholder_name,
|
|
4209
|
+
-> { Increase::CardPayment::Element::CardDecline::Verification::CardholderName },
|
|
4210
|
+
nil?: true
|
|
4211
|
+
|
|
4212
|
+
# @!method initialize(card_verification_code:, cardholder_address:, cardholder_name:)
|
|
4125
4213
|
# Some parameter documentations has been truncated, see
|
|
4126
4214
|
# {Increase::Models::CardPayment::Element::CardDecline::Verification} for more
|
|
4127
4215
|
# details.
|
|
@@ -4131,6 +4219,8 @@ module Increase
|
|
|
4131
4219
|
# @param card_verification_code [Increase::Models::CardPayment::Element::CardDecline::Verification::CardVerificationCode] Fields related to verification of the Card Verification Code, a 3-digit code on
|
|
4132
4220
|
#
|
|
4133
4221
|
# @param cardholder_address [Increase::Models::CardPayment::Element::CardDecline::Verification::CardholderAddress] Cardholder address provided in the authorization request and the address on file
|
|
4222
|
+
#
|
|
4223
|
+
# @param cardholder_name [Increase::Models::CardPayment::Element::CardDecline::Verification::CardholderName, nil] Cardholder name provided in the authorization request.
|
|
4134
4224
|
|
|
4135
4225
|
# @see Increase::Models::CardPayment::Element::CardDecline::Verification#card_verification_code
|
|
4136
4226
|
class CardVerificationCode < Increase::Internal::Type::BaseModel
|
|
@@ -4247,6 +4337,36 @@ module Increase
|
|
|
4247
4337
|
# @return [Array<Symbol>]
|
|
4248
4338
|
end
|
|
4249
4339
|
end
|
|
4340
|
+
|
|
4341
|
+
# @see Increase::Models::CardPayment::Element::CardDecline::Verification#cardholder_name
|
|
4342
|
+
class CardholderName < Increase::Internal::Type::BaseModel
|
|
4343
|
+
# @!attribute provided_first_name
|
|
4344
|
+
# The first name provided for verification in the authorization request.
|
|
4345
|
+
#
|
|
4346
|
+
# @return [String, nil]
|
|
4347
|
+
required :provided_first_name, String, nil?: true
|
|
4348
|
+
|
|
4349
|
+
# @!attribute provided_last_name
|
|
4350
|
+
# The last name provided for verification in the authorization request.
|
|
4351
|
+
#
|
|
4352
|
+
# @return [String, nil]
|
|
4353
|
+
required :provided_last_name, String, nil?: true
|
|
4354
|
+
|
|
4355
|
+
# @!attribute provided_middle_name
|
|
4356
|
+
# The middle name provided for verification in the authorization request.
|
|
4357
|
+
#
|
|
4358
|
+
# @return [String, nil]
|
|
4359
|
+
required :provided_middle_name, String, nil?: true
|
|
4360
|
+
|
|
4361
|
+
# @!method initialize(provided_first_name:, provided_last_name:, provided_middle_name:)
|
|
4362
|
+
# Cardholder name provided in the authorization request.
|
|
4363
|
+
#
|
|
4364
|
+
# @param provided_first_name [String, nil] The first name provided for verification in the authorization request.
|
|
4365
|
+
#
|
|
4366
|
+
# @param provided_last_name [String, nil] The last name provided for verification in the authorization request.
|
|
4367
|
+
#
|
|
4368
|
+
# @param provided_middle_name [String, nil] The middle name provided for verification in the authorization request.
|
|
4369
|
+
end
|
|
4250
4370
|
end
|
|
4251
4371
|
end
|
|
4252
4372
|
|
|
@@ -5289,7 +5409,15 @@ module Increase
|
|
|
5289
5409
|
required :cardholder_address,
|
|
5290
5410
|
-> { Increase::CardPayment::Element::CardFinancial::Verification::CardholderAddress }
|
|
5291
5411
|
|
|
5292
|
-
# @!
|
|
5412
|
+
# @!attribute cardholder_name
|
|
5413
|
+
# Cardholder name provided in the authorization request.
|
|
5414
|
+
#
|
|
5415
|
+
# @return [Increase::Models::CardPayment::Element::CardFinancial::Verification::CardholderName, nil]
|
|
5416
|
+
required :cardholder_name,
|
|
5417
|
+
-> { Increase::CardPayment::Element::CardFinancial::Verification::CardholderName },
|
|
5418
|
+
nil?: true
|
|
5419
|
+
|
|
5420
|
+
# @!method initialize(card_verification_code:, cardholder_address:, cardholder_name:)
|
|
5293
5421
|
# Some parameter documentations has been truncated, see
|
|
5294
5422
|
# {Increase::Models::CardPayment::Element::CardFinancial::Verification} for more
|
|
5295
5423
|
# details.
|
|
@@ -5299,6 +5427,8 @@ module Increase
|
|
|
5299
5427
|
# @param card_verification_code [Increase::Models::CardPayment::Element::CardFinancial::Verification::CardVerificationCode] Fields related to verification of the Card Verification Code, a 3-digit code on
|
|
5300
5428
|
#
|
|
5301
5429
|
# @param cardholder_address [Increase::Models::CardPayment::Element::CardFinancial::Verification::CardholderAddress] Cardholder address provided in the authorization request and the address on file
|
|
5430
|
+
#
|
|
5431
|
+
# @param cardholder_name [Increase::Models::CardPayment::Element::CardFinancial::Verification::CardholderName, nil] Cardholder name provided in the authorization request.
|
|
5302
5432
|
|
|
5303
5433
|
# @see Increase::Models::CardPayment::Element::CardFinancial::Verification#card_verification_code
|
|
5304
5434
|
class CardVerificationCode < Increase::Internal::Type::BaseModel
|
|
@@ -5415,6 +5545,36 @@ module Increase
|
|
|
5415
5545
|
# @return [Array<Symbol>]
|
|
5416
5546
|
end
|
|
5417
5547
|
end
|
|
5548
|
+
|
|
5549
|
+
# @see Increase::Models::CardPayment::Element::CardFinancial::Verification#cardholder_name
|
|
5550
|
+
class CardholderName < Increase::Internal::Type::BaseModel
|
|
5551
|
+
# @!attribute provided_first_name
|
|
5552
|
+
# The first name provided for verification in the authorization request.
|
|
5553
|
+
#
|
|
5554
|
+
# @return [String, nil]
|
|
5555
|
+
required :provided_first_name, String, nil?: true
|
|
5556
|
+
|
|
5557
|
+
# @!attribute provided_last_name
|
|
5558
|
+
# The last name provided for verification in the authorization request.
|
|
5559
|
+
#
|
|
5560
|
+
# @return [String, nil]
|
|
5561
|
+
required :provided_last_name, String, nil?: true
|
|
5562
|
+
|
|
5563
|
+
# @!attribute provided_middle_name
|
|
5564
|
+
# The middle name provided for verification in the authorization request.
|
|
5565
|
+
#
|
|
5566
|
+
# @return [String, nil]
|
|
5567
|
+
required :provided_middle_name, String, nil?: true
|
|
5568
|
+
|
|
5569
|
+
# @!method initialize(provided_first_name:, provided_last_name:, provided_middle_name:)
|
|
5570
|
+
# Cardholder name provided in the authorization request.
|
|
5571
|
+
#
|
|
5572
|
+
# @param provided_first_name [String, nil] The first name provided for verification in the authorization request.
|
|
5573
|
+
#
|
|
5574
|
+
# @param provided_last_name [String, nil] The last name provided for verification in the authorization request.
|
|
5575
|
+
#
|
|
5576
|
+
# @param provided_middle_name [String, nil] The middle name provided for verification in the authorization request.
|
|
5577
|
+
end
|
|
5418
5578
|
end
|
|
5419
5579
|
end
|
|
5420
5580
|
|
|
@@ -10197,7 +10357,15 @@ module Increase
|
|
|
10197
10357
|
required :cardholder_address,
|
|
10198
10358
|
-> { Increase::CardPayment::Element::CardValidation::Verification::CardholderAddress }
|
|
10199
10359
|
|
|
10200
|
-
# @!
|
|
10360
|
+
# @!attribute cardholder_name
|
|
10361
|
+
# Cardholder name provided in the authorization request.
|
|
10362
|
+
#
|
|
10363
|
+
# @return [Increase::Models::CardPayment::Element::CardValidation::Verification::CardholderName, nil]
|
|
10364
|
+
required :cardholder_name,
|
|
10365
|
+
-> { Increase::CardPayment::Element::CardValidation::Verification::CardholderName },
|
|
10366
|
+
nil?: true
|
|
10367
|
+
|
|
10368
|
+
# @!method initialize(card_verification_code:, cardholder_address:, cardholder_name:)
|
|
10201
10369
|
# Some parameter documentations has been truncated, see
|
|
10202
10370
|
# {Increase::Models::CardPayment::Element::CardValidation::Verification} for more
|
|
10203
10371
|
# details.
|
|
@@ -10207,6 +10375,8 @@ module Increase
|
|
|
10207
10375
|
# @param card_verification_code [Increase::Models::CardPayment::Element::CardValidation::Verification::CardVerificationCode] Fields related to verification of the Card Verification Code, a 3-digit code on
|
|
10208
10376
|
#
|
|
10209
10377
|
# @param cardholder_address [Increase::Models::CardPayment::Element::CardValidation::Verification::CardholderAddress] Cardholder address provided in the authorization request and the address on file
|
|
10378
|
+
#
|
|
10379
|
+
# @param cardholder_name [Increase::Models::CardPayment::Element::CardValidation::Verification::CardholderName, nil] Cardholder name provided in the authorization request.
|
|
10210
10380
|
|
|
10211
10381
|
# @see Increase::Models::CardPayment::Element::CardValidation::Verification#card_verification_code
|
|
10212
10382
|
class CardVerificationCode < Increase::Internal::Type::BaseModel
|
|
@@ -10323,6 +10493,36 @@ module Increase
|
|
|
10323
10493
|
# @return [Array<Symbol>]
|
|
10324
10494
|
end
|
|
10325
10495
|
end
|
|
10496
|
+
|
|
10497
|
+
# @see Increase::Models::CardPayment::Element::CardValidation::Verification#cardholder_name
|
|
10498
|
+
class CardholderName < Increase::Internal::Type::BaseModel
|
|
10499
|
+
# @!attribute provided_first_name
|
|
10500
|
+
# The first name provided for verification in the authorization request.
|
|
10501
|
+
#
|
|
10502
|
+
# @return [String, nil]
|
|
10503
|
+
required :provided_first_name, String, nil?: true
|
|
10504
|
+
|
|
10505
|
+
# @!attribute provided_last_name
|
|
10506
|
+
# The last name provided for verification in the authorization request.
|
|
10507
|
+
#
|
|
10508
|
+
# @return [String, nil]
|
|
10509
|
+
required :provided_last_name, String, nil?: true
|
|
10510
|
+
|
|
10511
|
+
# @!attribute provided_middle_name
|
|
10512
|
+
# The middle name provided for verification in the authorization request.
|
|
10513
|
+
#
|
|
10514
|
+
# @return [String, nil]
|
|
10515
|
+
required :provided_middle_name, String, nil?: true
|
|
10516
|
+
|
|
10517
|
+
# @!method initialize(provided_first_name:, provided_last_name:, provided_middle_name:)
|
|
10518
|
+
# Cardholder name provided in the authorization request.
|
|
10519
|
+
#
|
|
10520
|
+
# @param provided_first_name [String, nil] The first name provided for verification in the authorization request.
|
|
10521
|
+
#
|
|
10522
|
+
# @param provided_last_name [String, nil] The last name provided for verification in the authorization request.
|
|
10523
|
+
#
|
|
10524
|
+
# @param provided_middle_name [String, nil] The middle name provided for verification in the authorization request.
|
|
10525
|
+
end
|
|
10326
10526
|
end
|
|
10327
10527
|
end
|
|
10328
10528
|
|
|
@@ -1567,7 +1567,15 @@ module Increase
|
|
|
1567
1567
|
required :cardholder_address,
|
|
1568
1568
|
-> { Increase::DeclinedTransaction::Source::CardDecline::Verification::CardholderAddress }
|
|
1569
1569
|
|
|
1570
|
-
# @!
|
|
1570
|
+
# @!attribute cardholder_name
|
|
1571
|
+
# Cardholder name provided in the authorization request.
|
|
1572
|
+
#
|
|
1573
|
+
# @return [Increase::Models::DeclinedTransaction::Source::CardDecline::Verification::CardholderName, nil]
|
|
1574
|
+
required :cardholder_name,
|
|
1575
|
+
-> { Increase::DeclinedTransaction::Source::CardDecline::Verification::CardholderName },
|
|
1576
|
+
nil?: true
|
|
1577
|
+
|
|
1578
|
+
# @!method initialize(card_verification_code:, cardholder_address:, cardholder_name:)
|
|
1571
1579
|
# Some parameter documentations has been truncated, see
|
|
1572
1580
|
# {Increase::Models::DeclinedTransaction::Source::CardDecline::Verification} for
|
|
1573
1581
|
# more details.
|
|
@@ -1577,6 +1585,8 @@ module Increase
|
|
|
1577
1585
|
# @param card_verification_code [Increase::Models::DeclinedTransaction::Source::CardDecline::Verification::CardVerificationCode] Fields related to verification of the Card Verification Code, a 3-digit code on
|
|
1578
1586
|
#
|
|
1579
1587
|
# @param cardholder_address [Increase::Models::DeclinedTransaction::Source::CardDecline::Verification::CardholderAddress] Cardholder address provided in the authorization request and the address on file
|
|
1588
|
+
#
|
|
1589
|
+
# @param cardholder_name [Increase::Models::DeclinedTransaction::Source::CardDecline::Verification::CardholderName, nil] Cardholder name provided in the authorization request.
|
|
1580
1590
|
|
|
1581
1591
|
# @see Increase::Models::DeclinedTransaction::Source::CardDecline::Verification#card_verification_code
|
|
1582
1592
|
class CardVerificationCode < Increase::Internal::Type::BaseModel
|
|
@@ -1693,6 +1703,36 @@ module Increase
|
|
|
1693
1703
|
# @return [Array<Symbol>]
|
|
1694
1704
|
end
|
|
1695
1705
|
end
|
|
1706
|
+
|
|
1707
|
+
# @see Increase::Models::DeclinedTransaction::Source::CardDecline::Verification#cardholder_name
|
|
1708
|
+
class CardholderName < Increase::Internal::Type::BaseModel
|
|
1709
|
+
# @!attribute provided_first_name
|
|
1710
|
+
# The first name provided for verification in the authorization request.
|
|
1711
|
+
#
|
|
1712
|
+
# @return [String, nil]
|
|
1713
|
+
required :provided_first_name, String, nil?: true
|
|
1714
|
+
|
|
1715
|
+
# @!attribute provided_last_name
|
|
1716
|
+
# The last name provided for verification in the authorization request.
|
|
1717
|
+
#
|
|
1718
|
+
# @return [String, nil]
|
|
1719
|
+
required :provided_last_name, String, nil?: true
|
|
1720
|
+
|
|
1721
|
+
# @!attribute provided_middle_name
|
|
1722
|
+
# The middle name provided for verification in the authorization request.
|
|
1723
|
+
#
|
|
1724
|
+
# @return [String, nil]
|
|
1725
|
+
required :provided_middle_name, String, nil?: true
|
|
1726
|
+
|
|
1727
|
+
# @!method initialize(provided_first_name:, provided_last_name:, provided_middle_name:)
|
|
1728
|
+
# Cardholder name provided in the authorization request.
|
|
1729
|
+
#
|
|
1730
|
+
# @param provided_first_name [String, nil] The first name provided for verification in the authorization request.
|
|
1731
|
+
#
|
|
1732
|
+
# @param provided_last_name [String, nil] The last name provided for verification in the authorization request.
|
|
1733
|
+
#
|
|
1734
|
+
# @param provided_middle_name [String, nil] The middle name provided for verification in the authorization request.
|
|
1735
|
+
end
|
|
1696
1736
|
end
|
|
1697
1737
|
end
|
|
1698
1738
|
|
|
@@ -1492,7 +1492,17 @@ module Increase
|
|
|
1492
1492
|
required :cardholder_address,
|
|
1493
1493
|
-> { Increase::PendingTransaction::Source::CardAuthorization::Verification::CardholderAddress }
|
|
1494
1494
|
|
|
1495
|
-
# @!
|
|
1495
|
+
# @!attribute cardholder_name
|
|
1496
|
+
# Cardholder name provided in the authorization request.
|
|
1497
|
+
#
|
|
1498
|
+
# @return [Increase::Models::PendingTransaction::Source::CardAuthorization::Verification::CardholderName, nil]
|
|
1499
|
+
required :cardholder_name,
|
|
1500
|
+
-> {
|
|
1501
|
+
Increase::PendingTransaction::Source::CardAuthorization::Verification::CardholderName
|
|
1502
|
+
},
|
|
1503
|
+
nil?: true
|
|
1504
|
+
|
|
1505
|
+
# @!method initialize(card_verification_code:, cardholder_address:, cardholder_name:)
|
|
1496
1506
|
# Some parameter documentations has been truncated, see
|
|
1497
1507
|
# {Increase::Models::PendingTransaction::Source::CardAuthorization::Verification}
|
|
1498
1508
|
# for more details.
|
|
@@ -1502,6 +1512,8 @@ module Increase
|
|
|
1502
1512
|
# @param card_verification_code [Increase::Models::PendingTransaction::Source::CardAuthorization::Verification::CardVerificationCode] Fields related to verification of the Card Verification Code, a 3-digit code on
|
|
1503
1513
|
#
|
|
1504
1514
|
# @param cardholder_address [Increase::Models::PendingTransaction::Source::CardAuthorization::Verification::CardholderAddress] Cardholder address provided in the authorization request and the address on file
|
|
1515
|
+
#
|
|
1516
|
+
# @param cardholder_name [Increase::Models::PendingTransaction::Source::CardAuthorization::Verification::CardholderName, nil] Cardholder name provided in the authorization request.
|
|
1505
1517
|
|
|
1506
1518
|
# @see Increase::Models::PendingTransaction::Source::CardAuthorization::Verification#card_verification_code
|
|
1507
1519
|
class CardVerificationCode < Increase::Internal::Type::BaseModel
|
|
@@ -1618,6 +1630,36 @@ module Increase
|
|
|
1618
1630
|
# @return [Array<Symbol>]
|
|
1619
1631
|
end
|
|
1620
1632
|
end
|
|
1633
|
+
|
|
1634
|
+
# @see Increase::Models::PendingTransaction::Source::CardAuthorization::Verification#cardholder_name
|
|
1635
|
+
class CardholderName < Increase::Internal::Type::BaseModel
|
|
1636
|
+
# @!attribute provided_first_name
|
|
1637
|
+
# The first name provided for verification in the authorization request.
|
|
1638
|
+
#
|
|
1639
|
+
# @return [String, nil]
|
|
1640
|
+
required :provided_first_name, String, nil?: true
|
|
1641
|
+
|
|
1642
|
+
# @!attribute provided_last_name
|
|
1643
|
+
# The last name provided for verification in the authorization request.
|
|
1644
|
+
#
|
|
1645
|
+
# @return [String, nil]
|
|
1646
|
+
required :provided_last_name, String, nil?: true
|
|
1647
|
+
|
|
1648
|
+
# @!attribute provided_middle_name
|
|
1649
|
+
# The middle name provided for verification in the authorization request.
|
|
1650
|
+
#
|
|
1651
|
+
# @return [String, nil]
|
|
1652
|
+
required :provided_middle_name, String, nil?: true
|
|
1653
|
+
|
|
1654
|
+
# @!method initialize(provided_first_name:, provided_last_name:, provided_middle_name:)
|
|
1655
|
+
# Cardholder name provided in the authorization request.
|
|
1656
|
+
#
|
|
1657
|
+
# @param provided_first_name [String, nil] The first name provided for verification in the authorization request.
|
|
1658
|
+
#
|
|
1659
|
+
# @param provided_last_name [String, nil] The last name provided for verification in the authorization request.
|
|
1660
|
+
#
|
|
1661
|
+
# @param provided_middle_name [String, nil] The middle name provided for verification in the authorization request.
|
|
1662
|
+
end
|
|
1621
1663
|
end
|
|
1622
1664
|
end
|
|
1623
1665
|
|