increase 1.184.0 → 1.185.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '09e064b7eac6a541dc7f7e22478fe2fbe007ee0d09671493baf4ccf157192a9d'
4
- data.tar.gz: 31a1569cd1c0757619519551563e82ab1b04707360e7d74201cb676a146d0c92
3
+ metadata.gz: 8064ddd1e94464541d3cf4b42a070c9fcea10d1cc1509aeb91b7ec1f8d7b404b
4
+ data.tar.gz: 6594a5cf7af87d1f1d42ec1121186d381cbc50b4967865c7ec9129d247b75807
5
5
  SHA512:
6
- metadata.gz: df5099f58f8d8b93371eafb0b16740b7c1768d5751496560c7f199e7912692bc2f5fac241f3bac8e0de5870737db38dce7daa9e6f55f822a0c1258c2095008a6
7
- data.tar.gz: fbf7a7d71a5f308df76ce47929a7f63d39f2ac21030f6f1cb8ed1b4941b1250ee50d1869836e4c8f36ebb0667cbd6cf0ac32078af972953d1330bfa00cd1f7f3
6
+ metadata.gz: 4b33151b9797044f38f923b658967f687effe3cc33ca66488f151a7b08ac5c7262fd80078dfb001db3defa968b9f7f986d47f3d2609769ee8fd1bc9e061d7c87
7
+ data.tar.gz: 96fc8aa41f71509d90215238ad3e7dc66d1052a5a7284619b0839e7adac515b83ecc91c443b7ae9068d86b65ed6ffe7bce7567d259988b5515523a917e347edc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.185.0 (2026-01-27)
4
+
5
+ Full Changelog: [v1.184.0...v1.185.0](https://github.com/Increase/increase-ruby/compare/v1.184.0...v1.185.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([e198c3e](https://github.com/Increase/increase-ruby/commit/e198c3e11f98040cfe817eaac4d5f9d3aa3124a5))
10
+
3
11
  ## 1.184.0 (2026-01-27)
4
12
 
5
13
  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
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.184.0"
18
+ gem "increase", "~> 1.185.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -1699,7 +1699,15 @@ module Increase
1699
1699
  required :cardholder_address,
1700
1700
  -> { Increase::CardPayment::Element::CardAuthorization::Verification::CardholderAddress }
1701
1701
 
1702
- # @!method initialize(card_verification_code:, cardholder_address:)
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
- # @!method initialize(card_verification_code:, cardholder_address:)
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
- # @!method initialize(card_verification_code:, cardholder_address:)
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
- # @!method initialize(card_verification_code:, cardholder_address:)
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
- # @!method initialize(card_verification_code:, cardholder_address:)
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
- # @!method initialize(card_verification_code:, cardholder_address:)
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
- # @!method initialize(card_verification_code:, cardholder_address:)
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
 
@@ -1443,7 +1443,15 @@ module Increase
1443
1443
  required :cardholder_address,
1444
1444
  -> { Increase::RealTimeDecision::CardAuthorization::Verification::CardholderAddress }
1445
1445
 
1446
- # @!method initialize(card_verification_code:, cardholder_address:)
1446
+ # @!attribute cardholder_name
1447
+ # Cardholder name provided in the authorization request.
1448
+ #
1449
+ # @return [Increase::Models::RealTimeDecision::CardAuthorization::Verification::CardholderName, nil]
1450
+ required :cardholder_name,
1451
+ -> { Increase::RealTimeDecision::CardAuthorization::Verification::CardholderName },
1452
+ nil?: true
1453
+
1454
+ # @!method initialize(card_verification_code:, cardholder_address:, cardholder_name:)
1447
1455
  # Some parameter documentations has been truncated, see
1448
1456
  # {Increase::Models::RealTimeDecision::CardAuthorization::Verification} for more
1449
1457
  # details.
@@ -1453,6 +1461,8 @@ module Increase
1453
1461
  # @param card_verification_code [Increase::Models::RealTimeDecision::CardAuthorization::Verification::CardVerificationCode] Fields related to verification of the Card Verification Code, a 3-digit code on
1454
1462
  #
1455
1463
  # @param cardholder_address [Increase::Models::RealTimeDecision::CardAuthorization::Verification::CardholderAddress] Cardholder address provided in the authorization request and the address on file
1464
+ #
1465
+ # @param cardholder_name [Increase::Models::RealTimeDecision::CardAuthorization::Verification::CardholderName, nil] Cardholder name provided in the authorization request.
1456
1466
 
1457
1467
  # @see Increase::Models::RealTimeDecision::CardAuthorization::Verification#card_verification_code
1458
1468
  class CardVerificationCode < Increase::Internal::Type::BaseModel
@@ -1569,6 +1579,36 @@ module Increase
1569
1579
  # @return [Array<Symbol>]
1570
1580
  end
1571
1581
  end
1582
+
1583
+ # @see Increase::Models::RealTimeDecision::CardAuthorization::Verification#cardholder_name
1584
+ class CardholderName < Increase::Internal::Type::BaseModel
1585
+ # @!attribute provided_first_name
1586
+ # The first name provided for verification in the authorization request.
1587
+ #
1588
+ # @return [String, nil]
1589
+ required :provided_first_name, String, nil?: true
1590
+
1591
+ # @!attribute provided_last_name
1592
+ # The last name provided for verification in the authorization request.
1593
+ #
1594
+ # @return [String, nil]
1595
+ required :provided_last_name, String, nil?: true
1596
+
1597
+ # @!attribute provided_middle_name
1598
+ # The middle name provided for verification in the authorization request.
1599
+ #
1600
+ # @return [String, nil]
1601
+ required :provided_middle_name, String, nil?: true
1602
+
1603
+ # @!method initialize(provided_first_name:, provided_last_name:, provided_middle_name:)
1604
+ # Cardholder name provided in the authorization request.
1605
+ #
1606
+ # @param provided_first_name [String, nil] The first name provided for verification in the authorization request.
1607
+ #
1608
+ # @param provided_last_name [String, nil] The last name provided for verification in the authorization request.
1609
+ #
1610
+ # @param provided_middle_name [String, nil] The middle name provided for verification in the authorization request.
1611
+ end
1572
1612
  end
1573
1613
  end
1574
1614
 
@@ -2477,7 +2517,15 @@ module Increase
2477
2517
  required :cardholder_address,
2478
2518
  -> { Increase::RealTimeDecision::CardBalanceInquiry::Verification::CardholderAddress }
2479
2519
 
2480
- # @!method initialize(card_verification_code:, cardholder_address:)
2520
+ # @!attribute cardholder_name
2521
+ # Cardholder name provided in the authorization request.
2522
+ #
2523
+ # @return [Increase::Models::RealTimeDecision::CardBalanceInquiry::Verification::CardholderName, nil]
2524
+ required :cardholder_name,
2525
+ -> { Increase::RealTimeDecision::CardBalanceInquiry::Verification::CardholderName },
2526
+ nil?: true
2527
+
2528
+ # @!method initialize(card_verification_code:, cardholder_address:, cardholder_name:)
2481
2529
  # Some parameter documentations has been truncated, see
2482
2530
  # {Increase::Models::RealTimeDecision::CardBalanceInquiry::Verification} for more
2483
2531
  # details.
@@ -2487,6 +2535,8 @@ module Increase
2487
2535
  # @param card_verification_code [Increase::Models::RealTimeDecision::CardBalanceInquiry::Verification::CardVerificationCode] Fields related to verification of the Card Verification Code, a 3-digit code on
2488
2536
  #
2489
2537
  # @param cardholder_address [Increase::Models::RealTimeDecision::CardBalanceInquiry::Verification::CardholderAddress] Cardholder address provided in the authorization request and the address on file
2538
+ #
2539
+ # @param cardholder_name [Increase::Models::RealTimeDecision::CardBalanceInquiry::Verification::CardholderName, nil] Cardholder name provided in the authorization request.
2490
2540
 
2491
2541
  # @see Increase::Models::RealTimeDecision::CardBalanceInquiry::Verification#card_verification_code
2492
2542
  class CardVerificationCode < Increase::Internal::Type::BaseModel
@@ -2603,6 +2653,36 @@ module Increase
2603
2653
  # @return [Array<Symbol>]
2604
2654
  end
2605
2655
  end
2656
+
2657
+ # @see Increase::Models::RealTimeDecision::CardBalanceInquiry::Verification#cardholder_name
2658
+ class CardholderName < Increase::Internal::Type::BaseModel
2659
+ # @!attribute provided_first_name
2660
+ # The first name provided for verification in the authorization request.
2661
+ #
2662
+ # @return [String, nil]
2663
+ required :provided_first_name, String, nil?: true
2664
+
2665
+ # @!attribute provided_last_name
2666
+ # The last name provided for verification in the authorization request.
2667
+ #
2668
+ # @return [String, nil]
2669
+ required :provided_last_name, String, nil?: true
2670
+
2671
+ # @!attribute provided_middle_name
2672
+ # The middle name provided for verification in the authorization request.
2673
+ #
2674
+ # @return [String, nil]
2675
+ required :provided_middle_name, String, nil?: true
2676
+
2677
+ # @!method initialize(provided_first_name:, provided_last_name:, provided_middle_name:)
2678
+ # Cardholder name provided in the authorization request.
2679
+ #
2680
+ # @param provided_first_name [String, nil] The first name provided for verification in the authorization request.
2681
+ #
2682
+ # @param provided_last_name [String, nil] The last name provided for verification in the authorization request.
2683
+ #
2684
+ # @param provided_middle_name [String, nil] The middle name provided for verification in the authorization request.
2685
+ end
2606
2686
  end
2607
2687
  end
2608
2688
 
@@ -2293,7 +2293,15 @@ module Increase
2293
2293
  required :cardholder_address,
2294
2294
  -> { Increase::Transaction::Source::CardFinancial::Verification::CardholderAddress }
2295
2295
 
2296
- # @!method initialize(card_verification_code:, cardholder_address:)
2296
+ # @!attribute cardholder_name
2297
+ # Cardholder name provided in the authorization request.
2298
+ #
2299
+ # @return [Increase::Models::Transaction::Source::CardFinancial::Verification::CardholderName, nil]
2300
+ required :cardholder_name,
2301
+ -> { Increase::Transaction::Source::CardFinancial::Verification::CardholderName },
2302
+ nil?: true
2303
+
2304
+ # @!method initialize(card_verification_code:, cardholder_address:, cardholder_name:)
2297
2305
  # Some parameter documentations has been truncated, see
2298
2306
  # {Increase::Models::Transaction::Source::CardFinancial::Verification} for more
2299
2307
  # details.
@@ -2303,6 +2311,8 @@ module Increase
2303
2311
  # @param card_verification_code [Increase::Models::Transaction::Source::CardFinancial::Verification::CardVerificationCode] Fields related to verification of the Card Verification Code, a 3-digit code on
2304
2312
  #
2305
2313
  # @param cardholder_address [Increase::Models::Transaction::Source::CardFinancial::Verification::CardholderAddress] Cardholder address provided in the authorization request and the address on file
2314
+ #
2315
+ # @param cardholder_name [Increase::Models::Transaction::Source::CardFinancial::Verification::CardholderName, nil] Cardholder name provided in the authorization request.
2306
2316
 
2307
2317
  # @see Increase::Models::Transaction::Source::CardFinancial::Verification#card_verification_code
2308
2318
  class CardVerificationCode < Increase::Internal::Type::BaseModel
@@ -2419,6 +2429,36 @@ module Increase
2419
2429
  # @return [Array<Symbol>]
2420
2430
  end
2421
2431
  end
2432
+
2433
+ # @see Increase::Models::Transaction::Source::CardFinancial::Verification#cardholder_name
2434
+ class CardholderName < Increase::Internal::Type::BaseModel
2435
+ # @!attribute provided_first_name
2436
+ # The first name provided for verification in the authorization request.
2437
+ #
2438
+ # @return [String, nil]
2439
+ required :provided_first_name, String, nil?: true
2440
+
2441
+ # @!attribute provided_last_name
2442
+ # The last name provided for verification in the authorization request.
2443
+ #
2444
+ # @return [String, nil]
2445
+ required :provided_last_name, String, nil?: true
2446
+
2447
+ # @!attribute provided_middle_name
2448
+ # The middle name provided for verification in the authorization request.
2449
+ #
2450
+ # @return [String, nil]
2451
+ required :provided_middle_name, String, nil?: true
2452
+
2453
+ # @!method initialize(provided_first_name:, provided_last_name:, provided_middle_name:)
2454
+ # Cardholder name provided in the authorization request.
2455
+ #
2456
+ # @param provided_first_name [String, nil] The first name provided for verification in the authorization request.
2457
+ #
2458
+ # @param provided_last_name [String, nil] The last name provided for verification in the authorization request.
2459
+ #
2460
+ # @param provided_middle_name [String, nil] The middle name provided for verification in the authorization request.
2461
+ end
2422
2462
  end
2423
2463
  end
2424
2464