increase 1.183.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.
@@ -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
 
@@ -6701,6 +6741,9 @@ module Increase
6701
6741
  # Fees
6702
6742
  FEES = :fees
6703
6743
 
6744
+ # General ledger transfer
6745
+ GENERAL_LEDGER_TRANSFER = :general_ledger_transfer
6746
+
6704
6747
  # Interest
6705
6748
  INTEREST = :interest
6706
6749
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.183.0"
4
+ VERSION = "1.185.0"
5
5
  end
@@ -3223,13 +3223,37 @@ module Increase
3223
3223
  end
3224
3224
  attr_writer :cardholder_address
3225
3225
 
3226
+ # Cardholder name provided in the authorization request.
3227
+ sig do
3228
+ returns(
3229
+ T.nilable(
3230
+ Increase::CardPayment::Element::CardAuthorization::Verification::CardholderName
3231
+ )
3232
+ )
3233
+ end
3234
+ attr_reader :cardholder_name
3235
+
3236
+ sig do
3237
+ params(
3238
+ cardholder_name:
3239
+ T.nilable(
3240
+ Increase::CardPayment::Element::CardAuthorization::Verification::CardholderName::OrHash
3241
+ )
3242
+ ).void
3243
+ end
3244
+ attr_writer :cardholder_name
3245
+
3226
3246
  # Fields related to verification of cardholder-provided values.
3227
3247
  sig do
3228
3248
  params(
3229
3249
  card_verification_code:
3230
3250
  Increase::CardPayment::Element::CardAuthorization::Verification::CardVerificationCode::OrHash,
3231
3251
  cardholder_address:
3232
- Increase::CardPayment::Element::CardAuthorization::Verification::CardholderAddress::OrHash
3252
+ Increase::CardPayment::Element::CardAuthorization::Verification::CardholderAddress::OrHash,
3253
+ cardholder_name:
3254
+ T.nilable(
3255
+ Increase::CardPayment::Element::CardAuthorization::Verification::CardholderName::OrHash
3256
+ )
3233
3257
  ).returns(T.attached_class)
3234
3258
  end
3235
3259
  def self.new(
@@ -3238,7 +3262,9 @@ module Increase
3238
3262
  card_verification_code:,
3239
3263
  # Cardholder address provided in the authorization request and the address on file
3240
3264
  # we verified it against.
3241
- cardholder_address:
3265
+ cardholder_address:,
3266
+ # Cardholder name provided in the authorization request.
3267
+ cardholder_name:
3242
3268
  )
3243
3269
  end
3244
3270
 
@@ -3248,7 +3274,11 @@ module Increase
3248
3274
  card_verification_code:
3249
3275
  Increase::CardPayment::Element::CardAuthorization::Verification::CardVerificationCode,
3250
3276
  cardholder_address:
3251
- Increase::CardPayment::Element::CardAuthorization::Verification::CardholderAddress
3277
+ Increase::CardPayment::Element::CardAuthorization::Verification::CardholderAddress,
3278
+ cardholder_name:
3279
+ T.nilable(
3280
+ Increase::CardPayment::Element::CardAuthorization::Verification::CardholderName
3281
+ )
3252
3282
  }
3253
3283
  )
3254
3284
  end
@@ -3485,6 +3515,58 @@ module Increase
3485
3515
  end
3486
3516
  end
3487
3517
  end
3518
+
3519
+ class CardholderName < Increase::Internal::Type::BaseModel
3520
+ OrHash =
3521
+ T.type_alias do
3522
+ T.any(
3523
+ Increase::CardPayment::Element::CardAuthorization::Verification::CardholderName,
3524
+ Increase::Internal::AnyHash
3525
+ )
3526
+ end
3527
+
3528
+ # The first name provided for verification in the authorization request.
3529
+ sig { returns(T.nilable(String)) }
3530
+ attr_accessor :provided_first_name
3531
+
3532
+ # The last name provided for verification in the authorization request.
3533
+ sig { returns(T.nilable(String)) }
3534
+ attr_accessor :provided_last_name
3535
+
3536
+ # The middle name provided for verification in the authorization request.
3537
+ sig { returns(T.nilable(String)) }
3538
+ attr_accessor :provided_middle_name
3539
+
3540
+ # Cardholder name provided in the authorization request.
3541
+ sig do
3542
+ params(
3543
+ provided_first_name: T.nilable(String),
3544
+ provided_last_name: T.nilable(String),
3545
+ provided_middle_name: T.nilable(String)
3546
+ ).returns(T.attached_class)
3547
+ end
3548
+ def self.new(
3549
+ # The first name provided for verification in the authorization request.
3550
+ provided_first_name:,
3551
+ # The last name provided for verification in the authorization request.
3552
+ provided_last_name:,
3553
+ # The middle name provided for verification in the authorization request.
3554
+ provided_middle_name:
3555
+ )
3556
+ end
3557
+
3558
+ sig do
3559
+ override.returns(
3560
+ {
3561
+ provided_first_name: T.nilable(String),
3562
+ provided_last_name: T.nilable(String),
3563
+ provided_middle_name: T.nilable(String)
3564
+ }
3565
+ )
3566
+ end
3567
+ def to_hash
3568
+ end
3569
+ end
3488
3570
  end
3489
3571
  end
3490
3572
 
@@ -5419,13 +5501,37 @@ module Increase
5419
5501
  end
5420
5502
  attr_writer :cardholder_address
5421
5503
 
5504
+ # Cardholder name provided in the authorization request.
5505
+ sig do
5506
+ returns(
5507
+ T.nilable(
5508
+ Increase::CardPayment::Element::CardBalanceInquiry::Verification::CardholderName
5509
+ )
5510
+ )
5511
+ end
5512
+ attr_reader :cardholder_name
5513
+
5514
+ sig do
5515
+ params(
5516
+ cardholder_name:
5517
+ T.nilable(
5518
+ Increase::CardPayment::Element::CardBalanceInquiry::Verification::CardholderName::OrHash
5519
+ )
5520
+ ).void
5521
+ end
5522
+ attr_writer :cardholder_name
5523
+
5422
5524
  # Fields related to verification of cardholder-provided values.
5423
5525
  sig do
5424
5526
  params(
5425
5527
  card_verification_code:
5426
5528
  Increase::CardPayment::Element::CardBalanceInquiry::Verification::CardVerificationCode::OrHash,
5427
5529
  cardholder_address:
5428
- Increase::CardPayment::Element::CardBalanceInquiry::Verification::CardholderAddress::OrHash
5530
+ Increase::CardPayment::Element::CardBalanceInquiry::Verification::CardholderAddress::OrHash,
5531
+ cardholder_name:
5532
+ T.nilable(
5533
+ Increase::CardPayment::Element::CardBalanceInquiry::Verification::CardholderName::OrHash
5534
+ )
5429
5535
  ).returns(T.attached_class)
5430
5536
  end
5431
5537
  def self.new(
@@ -5434,7 +5540,9 @@ module Increase
5434
5540
  card_verification_code:,
5435
5541
  # Cardholder address provided in the authorization request and the address on file
5436
5542
  # we verified it against.
5437
- cardholder_address:
5543
+ cardholder_address:,
5544
+ # Cardholder name provided in the authorization request.
5545
+ cardholder_name:
5438
5546
  )
5439
5547
  end
5440
5548
 
@@ -5444,7 +5552,11 @@ module Increase
5444
5552
  card_verification_code:
5445
5553
  Increase::CardPayment::Element::CardBalanceInquiry::Verification::CardVerificationCode,
5446
5554
  cardholder_address:
5447
- Increase::CardPayment::Element::CardBalanceInquiry::Verification::CardholderAddress
5555
+ Increase::CardPayment::Element::CardBalanceInquiry::Verification::CardholderAddress,
5556
+ cardholder_name:
5557
+ T.nilable(
5558
+ Increase::CardPayment::Element::CardBalanceInquiry::Verification::CardholderName
5559
+ )
5448
5560
  }
5449
5561
  )
5450
5562
  end
@@ -5681,6 +5793,58 @@ module Increase
5681
5793
  end
5682
5794
  end
5683
5795
  end
5796
+
5797
+ class CardholderName < Increase::Internal::Type::BaseModel
5798
+ OrHash =
5799
+ T.type_alias do
5800
+ T.any(
5801
+ Increase::CardPayment::Element::CardBalanceInquiry::Verification::CardholderName,
5802
+ Increase::Internal::AnyHash
5803
+ )
5804
+ end
5805
+
5806
+ # The first name provided for verification in the authorization request.
5807
+ sig { returns(T.nilable(String)) }
5808
+ attr_accessor :provided_first_name
5809
+
5810
+ # The last name provided for verification in the authorization request.
5811
+ sig { returns(T.nilable(String)) }
5812
+ attr_accessor :provided_last_name
5813
+
5814
+ # The middle name provided for verification in the authorization request.
5815
+ sig { returns(T.nilable(String)) }
5816
+ attr_accessor :provided_middle_name
5817
+
5818
+ # Cardholder name provided in the authorization request.
5819
+ sig do
5820
+ params(
5821
+ provided_first_name: T.nilable(String),
5822
+ provided_last_name: T.nilable(String),
5823
+ provided_middle_name: T.nilable(String)
5824
+ ).returns(T.attached_class)
5825
+ end
5826
+ def self.new(
5827
+ # The first name provided for verification in the authorization request.
5828
+ provided_first_name:,
5829
+ # The last name provided for verification in the authorization request.
5830
+ provided_last_name:,
5831
+ # The middle name provided for verification in the authorization request.
5832
+ provided_middle_name:
5833
+ )
5834
+ end
5835
+
5836
+ sig do
5837
+ override.returns(
5838
+ {
5839
+ provided_first_name: T.nilable(String),
5840
+ provided_last_name: T.nilable(String),
5841
+ provided_middle_name: T.nilable(String)
5842
+ }
5843
+ )
5844
+ end
5845
+ def to_hash
5846
+ end
5847
+ end
5684
5848
  end
5685
5849
  end
5686
5850
 
@@ -7888,13 +8052,37 @@ module Increase
7888
8052
  end
7889
8053
  attr_writer :cardholder_address
7890
8054
 
8055
+ # Cardholder name provided in the authorization request.
8056
+ sig do
8057
+ returns(
8058
+ T.nilable(
8059
+ Increase::CardPayment::Element::CardDecline::Verification::CardholderName
8060
+ )
8061
+ )
8062
+ end
8063
+ attr_reader :cardholder_name
8064
+
8065
+ sig do
8066
+ params(
8067
+ cardholder_name:
8068
+ T.nilable(
8069
+ Increase::CardPayment::Element::CardDecline::Verification::CardholderName::OrHash
8070
+ )
8071
+ ).void
8072
+ end
8073
+ attr_writer :cardholder_name
8074
+
7891
8075
  # Fields related to verification of cardholder-provided values.
7892
8076
  sig do
7893
8077
  params(
7894
8078
  card_verification_code:
7895
8079
  Increase::CardPayment::Element::CardDecline::Verification::CardVerificationCode::OrHash,
7896
8080
  cardholder_address:
7897
- Increase::CardPayment::Element::CardDecline::Verification::CardholderAddress::OrHash
8081
+ Increase::CardPayment::Element::CardDecline::Verification::CardholderAddress::OrHash,
8082
+ cardholder_name:
8083
+ T.nilable(
8084
+ Increase::CardPayment::Element::CardDecline::Verification::CardholderName::OrHash
8085
+ )
7898
8086
  ).returns(T.attached_class)
7899
8087
  end
7900
8088
  def self.new(
@@ -7903,7 +8091,9 @@ module Increase
7903
8091
  card_verification_code:,
7904
8092
  # Cardholder address provided in the authorization request and the address on file
7905
8093
  # we verified it against.
7906
- cardholder_address:
8094
+ cardholder_address:,
8095
+ # Cardholder name provided in the authorization request.
8096
+ cardholder_name:
7907
8097
  )
7908
8098
  end
7909
8099
 
@@ -7913,7 +8103,11 @@ module Increase
7913
8103
  card_verification_code:
7914
8104
  Increase::CardPayment::Element::CardDecline::Verification::CardVerificationCode,
7915
8105
  cardholder_address:
7916
- Increase::CardPayment::Element::CardDecline::Verification::CardholderAddress
8106
+ Increase::CardPayment::Element::CardDecline::Verification::CardholderAddress,
8107
+ cardholder_name:
8108
+ T.nilable(
8109
+ Increase::CardPayment::Element::CardDecline::Verification::CardholderName
8110
+ )
7917
8111
  }
7918
8112
  )
7919
8113
  end
@@ -8150,6 +8344,58 @@ module Increase
8150
8344
  end
8151
8345
  end
8152
8346
  end
8347
+
8348
+ class CardholderName < Increase::Internal::Type::BaseModel
8349
+ OrHash =
8350
+ T.type_alias do
8351
+ T.any(
8352
+ Increase::CardPayment::Element::CardDecline::Verification::CardholderName,
8353
+ Increase::Internal::AnyHash
8354
+ )
8355
+ end
8356
+
8357
+ # The first name provided for verification in the authorization request.
8358
+ sig { returns(T.nilable(String)) }
8359
+ attr_accessor :provided_first_name
8360
+
8361
+ # The last name provided for verification in the authorization request.
8362
+ sig { returns(T.nilable(String)) }
8363
+ attr_accessor :provided_last_name
8364
+
8365
+ # The middle name provided for verification in the authorization request.
8366
+ sig { returns(T.nilable(String)) }
8367
+ attr_accessor :provided_middle_name
8368
+
8369
+ # Cardholder name provided in the authorization request.
8370
+ sig do
8371
+ params(
8372
+ provided_first_name: T.nilable(String),
8373
+ provided_last_name: T.nilable(String),
8374
+ provided_middle_name: T.nilable(String)
8375
+ ).returns(T.attached_class)
8376
+ end
8377
+ def self.new(
8378
+ # The first name provided for verification in the authorization request.
8379
+ provided_first_name:,
8380
+ # The last name provided for verification in the authorization request.
8381
+ provided_last_name:,
8382
+ # The middle name provided for verification in the authorization request.
8383
+ provided_middle_name:
8384
+ )
8385
+ end
8386
+
8387
+ sig do
8388
+ override.returns(
8389
+ {
8390
+ provided_first_name: T.nilable(String),
8391
+ provided_last_name: T.nilable(String),
8392
+ provided_middle_name: T.nilable(String)
8393
+ }
8394
+ )
8395
+ end
8396
+ def to_hash
8397
+ end
8398
+ end
8153
8399
  end
8154
8400
  end
8155
8401
 
@@ -10130,13 +10376,37 @@ module Increase
10130
10376
  end
10131
10377
  attr_writer :cardholder_address
10132
10378
 
10379
+ # Cardholder name provided in the authorization request.
10380
+ sig do
10381
+ returns(
10382
+ T.nilable(
10383
+ Increase::CardPayment::Element::CardFinancial::Verification::CardholderName
10384
+ )
10385
+ )
10386
+ end
10387
+ attr_reader :cardholder_name
10388
+
10389
+ sig do
10390
+ params(
10391
+ cardholder_name:
10392
+ T.nilable(
10393
+ Increase::CardPayment::Element::CardFinancial::Verification::CardholderName::OrHash
10394
+ )
10395
+ ).void
10396
+ end
10397
+ attr_writer :cardholder_name
10398
+
10133
10399
  # Fields related to verification of cardholder-provided values.
10134
10400
  sig do
10135
10401
  params(
10136
10402
  card_verification_code:
10137
10403
  Increase::CardPayment::Element::CardFinancial::Verification::CardVerificationCode::OrHash,
10138
10404
  cardholder_address:
10139
- Increase::CardPayment::Element::CardFinancial::Verification::CardholderAddress::OrHash
10405
+ Increase::CardPayment::Element::CardFinancial::Verification::CardholderAddress::OrHash,
10406
+ cardholder_name:
10407
+ T.nilable(
10408
+ Increase::CardPayment::Element::CardFinancial::Verification::CardholderName::OrHash
10409
+ )
10140
10410
  ).returns(T.attached_class)
10141
10411
  end
10142
10412
  def self.new(
@@ -10145,7 +10415,9 @@ module Increase
10145
10415
  card_verification_code:,
10146
10416
  # Cardholder address provided in the authorization request and the address on file
10147
10417
  # we verified it against.
10148
- cardholder_address:
10418
+ cardholder_address:,
10419
+ # Cardholder name provided in the authorization request.
10420
+ cardholder_name:
10149
10421
  )
10150
10422
  end
10151
10423
 
@@ -10155,7 +10427,11 @@ module Increase
10155
10427
  card_verification_code:
10156
10428
  Increase::CardPayment::Element::CardFinancial::Verification::CardVerificationCode,
10157
10429
  cardholder_address:
10158
- Increase::CardPayment::Element::CardFinancial::Verification::CardholderAddress
10430
+ Increase::CardPayment::Element::CardFinancial::Verification::CardholderAddress,
10431
+ cardholder_name:
10432
+ T.nilable(
10433
+ Increase::CardPayment::Element::CardFinancial::Verification::CardholderName
10434
+ )
10159
10435
  }
10160
10436
  )
10161
10437
  end
@@ -10392,6 +10668,58 @@ module Increase
10392
10668
  end
10393
10669
  end
10394
10670
  end
10671
+
10672
+ class CardholderName < Increase::Internal::Type::BaseModel
10673
+ OrHash =
10674
+ T.type_alias do
10675
+ T.any(
10676
+ Increase::CardPayment::Element::CardFinancial::Verification::CardholderName,
10677
+ Increase::Internal::AnyHash
10678
+ )
10679
+ end
10680
+
10681
+ # The first name provided for verification in the authorization request.
10682
+ sig { returns(T.nilable(String)) }
10683
+ attr_accessor :provided_first_name
10684
+
10685
+ # The last name provided for verification in the authorization request.
10686
+ sig { returns(T.nilable(String)) }
10687
+ attr_accessor :provided_last_name
10688
+
10689
+ # The middle name provided for verification in the authorization request.
10690
+ sig { returns(T.nilable(String)) }
10691
+ attr_accessor :provided_middle_name
10692
+
10693
+ # Cardholder name provided in the authorization request.
10694
+ sig do
10695
+ params(
10696
+ provided_first_name: T.nilable(String),
10697
+ provided_last_name: T.nilable(String),
10698
+ provided_middle_name: T.nilable(String)
10699
+ ).returns(T.attached_class)
10700
+ end
10701
+ def self.new(
10702
+ # The first name provided for verification in the authorization request.
10703
+ provided_first_name:,
10704
+ # The last name provided for verification in the authorization request.
10705
+ provided_last_name:,
10706
+ # The middle name provided for verification in the authorization request.
10707
+ provided_middle_name:
10708
+ )
10709
+ end
10710
+
10711
+ sig do
10712
+ override.returns(
10713
+ {
10714
+ provided_first_name: T.nilable(String),
10715
+ provided_last_name: T.nilable(String),
10716
+ provided_middle_name: T.nilable(String)
10717
+ }
10718
+ )
10719
+ end
10720
+ def to_hash
10721
+ end
10722
+ end
10395
10723
  end
10396
10724
  end
10397
10725
 
@@ -18967,13 +19295,37 @@ module Increase
18967
19295
  end
18968
19296
  attr_writer :cardholder_address
18969
19297
 
19298
+ # Cardholder name provided in the authorization request.
19299
+ sig do
19300
+ returns(
19301
+ T.nilable(
19302
+ Increase::CardPayment::Element::CardValidation::Verification::CardholderName
19303
+ )
19304
+ )
19305
+ end
19306
+ attr_reader :cardholder_name
19307
+
19308
+ sig do
19309
+ params(
19310
+ cardholder_name:
19311
+ T.nilable(
19312
+ Increase::CardPayment::Element::CardValidation::Verification::CardholderName::OrHash
19313
+ )
19314
+ ).void
19315
+ end
19316
+ attr_writer :cardholder_name
19317
+
18970
19318
  # Fields related to verification of cardholder-provided values.
18971
19319
  sig do
18972
19320
  params(
18973
19321
  card_verification_code:
18974
19322
  Increase::CardPayment::Element::CardValidation::Verification::CardVerificationCode::OrHash,
18975
19323
  cardholder_address:
18976
- Increase::CardPayment::Element::CardValidation::Verification::CardholderAddress::OrHash
19324
+ Increase::CardPayment::Element::CardValidation::Verification::CardholderAddress::OrHash,
19325
+ cardholder_name:
19326
+ T.nilable(
19327
+ Increase::CardPayment::Element::CardValidation::Verification::CardholderName::OrHash
19328
+ )
18977
19329
  ).returns(T.attached_class)
18978
19330
  end
18979
19331
  def self.new(
@@ -18982,7 +19334,9 @@ module Increase
18982
19334
  card_verification_code:,
18983
19335
  # Cardholder address provided in the authorization request and the address on file
18984
19336
  # we verified it against.
18985
- cardholder_address:
19337
+ cardholder_address:,
19338
+ # Cardholder name provided in the authorization request.
19339
+ cardholder_name:
18986
19340
  )
18987
19341
  end
18988
19342
 
@@ -18992,7 +19346,11 @@ module Increase
18992
19346
  card_verification_code:
18993
19347
  Increase::CardPayment::Element::CardValidation::Verification::CardVerificationCode,
18994
19348
  cardholder_address:
18995
- Increase::CardPayment::Element::CardValidation::Verification::CardholderAddress
19349
+ Increase::CardPayment::Element::CardValidation::Verification::CardholderAddress,
19350
+ cardholder_name:
19351
+ T.nilable(
19352
+ Increase::CardPayment::Element::CardValidation::Verification::CardholderName
19353
+ )
18996
19354
  }
18997
19355
  )
18998
19356
  end
@@ -19229,6 +19587,58 @@ module Increase
19229
19587
  end
19230
19588
  end
19231
19589
  end
19590
+
19591
+ class CardholderName < Increase::Internal::Type::BaseModel
19592
+ OrHash =
19593
+ T.type_alias do
19594
+ T.any(
19595
+ Increase::CardPayment::Element::CardValidation::Verification::CardholderName,
19596
+ Increase::Internal::AnyHash
19597
+ )
19598
+ end
19599
+
19600
+ # The first name provided for verification in the authorization request.
19601
+ sig { returns(T.nilable(String)) }
19602
+ attr_accessor :provided_first_name
19603
+
19604
+ # The last name provided for verification in the authorization request.
19605
+ sig { returns(T.nilable(String)) }
19606
+ attr_accessor :provided_last_name
19607
+
19608
+ # The middle name provided for verification in the authorization request.
19609
+ sig { returns(T.nilable(String)) }
19610
+ attr_accessor :provided_middle_name
19611
+
19612
+ # Cardholder name provided in the authorization request.
19613
+ sig do
19614
+ params(
19615
+ provided_first_name: T.nilable(String),
19616
+ provided_last_name: T.nilable(String),
19617
+ provided_middle_name: T.nilable(String)
19618
+ ).returns(T.attached_class)
19619
+ end
19620
+ def self.new(
19621
+ # The first name provided for verification in the authorization request.
19622
+ provided_first_name:,
19623
+ # The last name provided for verification in the authorization request.
19624
+ provided_last_name:,
19625
+ # The middle name provided for verification in the authorization request.
19626
+ provided_middle_name:
19627
+ )
19628
+ end
19629
+
19630
+ sig do
19631
+ override.returns(
19632
+ {
19633
+ provided_first_name: T.nilable(String),
19634
+ provided_last_name: T.nilable(String),
19635
+ provided_middle_name: T.nilable(String)
19636
+ }
19637
+ )
19638
+ end
19639
+ def to_hash
19640
+ end
19641
+ end
19232
19642
  end
19233
19643
  end
19234
19644