increase 1.72.0 → 1.74.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.
@@ -347,24 +347,45 @@ module Increase
347
347
  end
348
348
  attr_accessor :decision
349
349
 
350
- # The reason the card authorization was declined. This translates to a specific
351
- # decline code that is sent to the card network.
350
+ # If your application approves the authorization, this contains metadata about
351
+ # your decision to approve. Your response here is advisory to the acquiring bank.
352
+ # The bank may choose to reverse the authorization if you approve the transaction
353
+ # but indicate the address does not match.
352
354
  sig do
353
355
  returns(
354
356
  T.nilable(
355
- Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::OrSymbol
357
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval
356
358
  )
357
359
  )
358
360
  end
359
- attr_reader :decline_reason
361
+ attr_reader :approval
362
+
363
+ sig do
364
+ params(
365
+ approval:
366
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::OrHash
367
+ ).void
368
+ end
369
+ attr_writer :approval
370
+
371
+ # If your application declines the authorization, this contains details about the
372
+ # decline.
373
+ sig do
374
+ returns(
375
+ T.nilable(
376
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Decline
377
+ )
378
+ )
379
+ end
380
+ attr_reader :decline
360
381
 
361
382
  sig do
362
383
  params(
363
- decline_reason:
364
- Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::OrSymbol
384
+ decline:
385
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Decline::OrHash
365
386
  ).void
366
387
  end
367
- attr_writer :decline_reason
388
+ attr_writer :decline
368
389
 
369
390
  # If the Real-Time Decision relates to a card authorization attempt, this object
370
391
  # contains your response to the authorization.
@@ -372,16 +393,23 @@ module Increase
372
393
  params(
373
394
  decision:
374
395
  Increase::RealTimeDecisionActionParams::CardAuthorization::Decision::OrSymbol,
375
- decline_reason:
376
- Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::OrSymbol
396
+ approval:
397
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::OrHash,
398
+ decline:
399
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Decline::OrHash
377
400
  ).returns(T.attached_class)
378
401
  end
379
402
  def self.new(
380
403
  # Whether the card authorization should be approved or declined.
381
404
  decision:,
382
- # The reason the card authorization was declined. This translates to a specific
383
- # decline code that is sent to the card network.
384
- decline_reason: nil
405
+ # If your application approves the authorization, this contains metadata about
406
+ # your decision to approve. Your response here is advisory to the acquiring bank.
407
+ # The bank may choose to reverse the authorization if you approve the transaction
408
+ # but indicate the address does not match.
409
+ approval: nil,
410
+ # If your application declines the authorization, this contains details about the
411
+ # decline.
412
+ decline: nil
385
413
  )
386
414
  end
387
415
 
@@ -390,8 +418,10 @@ module Increase
390
418
  {
391
419
  decision:
392
420
  Increase::RealTimeDecisionActionParams::CardAuthorization::Decision::OrSymbol,
393
- decline_reason:
394
- Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::OrSymbol
421
+ approval:
422
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval,
423
+ decline:
424
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Decline
395
425
  }
396
426
  )
397
427
  end
@@ -436,70 +466,332 @@ module Increase
436
466
  end
437
467
  end
438
468
 
439
- # The reason the card authorization was declined. This translates to a specific
440
- # decline code that is sent to the card network.
441
- module DeclineReason
442
- extend Increase::Internal::Type::Enum
443
-
444
- TaggedSymbol =
469
+ class Approval < Increase::Internal::Type::BaseModel
470
+ OrHash =
445
471
  T.type_alias do
446
- T.all(
447
- Symbol,
448
- Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason
472
+ T.any(
473
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval,
474
+ Increase::Internal::AnyHash
449
475
  )
450
476
  end
451
- OrSymbol = T.type_alias { T.any(Symbol, String) }
452
477
 
453
- # The cardholder does not have sufficient funds to cover the transaction. The merchant may attempt to process the transaction again.
454
- INSUFFICIENT_FUNDS =
455
- T.let(
456
- :insufficient_funds,
457
- Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::TaggedSymbol
478
+ # Your decisions on whether or not each provided address component is a match.
479
+ # Your response here is evaluated against the customer's provided `postal_code`
480
+ # and `line1`, and an appropriate network response is generated. For example, if
481
+ # you would like to approve all transactions for a given card, you can submit
482
+ # `match` for both `postal_code` and `line1` and Increase will generate an
483
+ # approval with an Address Verification System (AVS) code that will match all of
484
+ # the available address information, or will report that no check was performed if
485
+ # no address information is available. If you do not provide a response, the
486
+ # address verification result will be calculated by Increase using the available
487
+ # address information available on the card. If none is available, Increase will
488
+ # report that no check was performed.
489
+ sig do
490
+ returns(
491
+ T.nilable(
492
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult
493
+ )
458
494
  )
495
+ end
496
+ attr_reader :cardholder_address_verification_result
459
497
 
460
- # This type of transaction is not allowed for this card. This transaction should not be retried.
461
- TRANSACTION_NEVER_ALLOWED =
462
- T.let(
463
- :transaction_never_allowed,
464
- Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::TaggedSymbol
465
- )
498
+ sig do
499
+ params(
500
+ cardholder_address_verification_result:
501
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult::OrHash
502
+ ).void
503
+ end
504
+ attr_writer :cardholder_address_verification_result
466
505
 
467
- # The transaction amount exceeds the cardholder's approval limit. The merchant may attempt to process the transaction again.
468
- EXCEEDS_APPROVAL_LIMIT =
469
- T.let(
470
- :exceeds_approval_limit,
471
- Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::TaggedSymbol
472
- )
506
+ # If your application approves the authorization, this contains metadata about
507
+ # your decision to approve. Your response here is advisory to the acquiring bank.
508
+ # The bank may choose to reverse the authorization if you approve the transaction
509
+ # but indicate the address does not match.
510
+ sig do
511
+ params(
512
+ cardholder_address_verification_result:
513
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult::OrHash
514
+ ).returns(T.attached_class)
515
+ end
516
+ def self.new(
517
+ # Your decisions on whether or not each provided address component is a match.
518
+ # Your response here is evaluated against the customer's provided `postal_code`
519
+ # and `line1`, and an appropriate network response is generated. For example, if
520
+ # you would like to approve all transactions for a given card, you can submit
521
+ # `match` for both `postal_code` and `line1` and Increase will generate an
522
+ # approval with an Address Verification System (AVS) code that will match all of
523
+ # the available address information, or will report that no check was performed if
524
+ # no address information is available. If you do not provide a response, the
525
+ # address verification result will be calculated by Increase using the available
526
+ # address information available on the card. If none is available, Increase will
527
+ # report that no check was performed.
528
+ cardholder_address_verification_result: nil
529
+ )
530
+ end
473
531
 
474
- # The card has been temporarily disabled or not yet activated. The merchant may attempt to process the transaction again.
475
- CARD_TEMPORARILY_DISABLED =
476
- T.let(
477
- :card_temporarily_disabled,
478
- Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::TaggedSymbol
532
+ sig do
533
+ override.returns(
534
+ {
535
+ cardholder_address_verification_result:
536
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult
537
+ }
479
538
  )
539
+ end
540
+ def to_hash
541
+ end
480
542
 
481
- # The transaction is suspected to be fraudulent. The merchant may attempt to process the transaction again.
482
- SUSPECTED_FRAUD =
483
- T.let(
484
- :suspected_fraud,
485
- Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::TaggedSymbol
543
+ class CardholderAddressVerificationResult < Increase::Internal::Type::BaseModel
544
+ OrHash =
545
+ T.type_alias do
546
+ T.any(
547
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult,
548
+ Increase::Internal::AnyHash
549
+ )
550
+ end
551
+
552
+ # Your decision on the address line of the provided address.
553
+ sig do
554
+ returns(
555
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult::Line1::OrSymbol
556
+ )
557
+ end
558
+ attr_accessor :line1
559
+
560
+ # Your decision on the postal code of the provided address.
561
+ sig do
562
+ returns(
563
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult::PostalCode::OrSymbol
564
+ )
565
+ end
566
+ attr_accessor :postal_code
567
+
568
+ # Your decisions on whether or not each provided address component is a match.
569
+ # Your response here is evaluated against the customer's provided `postal_code`
570
+ # and `line1`, and an appropriate network response is generated. For example, if
571
+ # you would like to approve all transactions for a given card, you can submit
572
+ # `match` for both `postal_code` and `line1` and Increase will generate an
573
+ # approval with an Address Verification System (AVS) code that will match all of
574
+ # the available address information, or will report that no check was performed if
575
+ # no address information is available. If you do not provide a response, the
576
+ # address verification result will be calculated by Increase using the available
577
+ # address information available on the card. If none is available, Increase will
578
+ # report that no check was performed.
579
+ sig do
580
+ params(
581
+ line1:
582
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult::Line1::OrSymbol,
583
+ postal_code:
584
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult::PostalCode::OrSymbol
585
+ ).returns(T.attached_class)
586
+ end
587
+ def self.new(
588
+ # Your decision on the address line of the provided address.
589
+ line1:,
590
+ # Your decision on the postal code of the provided address.
591
+ postal_code:
486
592
  )
593
+ end
487
594
 
488
- # The transaction was declined for another reason. The merchant may attempt to process the transaction again. This should be used sparingly.
489
- OTHER =
490
- T.let(
491
- :other,
492
- Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::TaggedSymbol
595
+ sig do
596
+ override.returns(
597
+ {
598
+ line1:
599
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult::Line1::OrSymbol,
600
+ postal_code:
601
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult::PostalCode::OrSymbol
602
+ }
603
+ )
604
+ end
605
+ def to_hash
606
+ end
607
+
608
+ # Your decision on the address line of the provided address.
609
+ module Line1
610
+ extend Increase::Internal::Type::Enum
611
+
612
+ TaggedSymbol =
613
+ T.type_alias do
614
+ T.all(
615
+ Symbol,
616
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult::Line1
617
+ )
618
+ end
619
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
620
+
621
+ # The cardholder address verification result matches the address provided by the merchant.
622
+ MATCH =
623
+ T.let(
624
+ :match,
625
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult::Line1::TaggedSymbol
626
+ )
627
+
628
+ # The cardholder address verification result does not match the address provided by the merchant.
629
+ NO_MATCH =
630
+ T.let(
631
+ :no_match,
632
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult::Line1::TaggedSymbol
633
+ )
634
+
635
+ sig do
636
+ override.returns(
637
+ T::Array[
638
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult::Line1::TaggedSymbol
639
+ ]
640
+ )
641
+ end
642
+ def self.values
643
+ end
644
+ end
645
+
646
+ # Your decision on the postal code of the provided address.
647
+ module PostalCode
648
+ extend Increase::Internal::Type::Enum
649
+
650
+ TaggedSymbol =
651
+ T.type_alias do
652
+ T.all(
653
+ Symbol,
654
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult::PostalCode
655
+ )
656
+ end
657
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
658
+
659
+ # The cardholder address verification result matches the address provided by the merchant.
660
+ MATCH =
661
+ T.let(
662
+ :match,
663
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult::PostalCode::TaggedSymbol
664
+ )
665
+
666
+ # The cardholder address verification result does not match the address provided by the merchant.
667
+ NO_MATCH =
668
+ T.let(
669
+ :no_match,
670
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult::PostalCode::TaggedSymbol
671
+ )
672
+
673
+ sig do
674
+ override.returns(
675
+ T::Array[
676
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult::PostalCode::TaggedSymbol
677
+ ]
678
+ )
679
+ end
680
+ def self.values
681
+ end
682
+ end
683
+ end
684
+ end
685
+
686
+ class Decline < Increase::Internal::Type::BaseModel
687
+ OrHash =
688
+ T.type_alias do
689
+ T.any(
690
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Decline,
691
+ Increase::Internal::AnyHash
692
+ )
693
+ end
694
+
695
+ # The reason the card authorization was declined. This translates to a specific
696
+ # decline code that is sent to the card network.
697
+ sig do
698
+ returns(
699
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Decline::Reason::OrSymbol
493
700
  )
701
+ end
702
+ attr_accessor :reason
703
+
704
+ # If your application declines the authorization, this contains details about the
705
+ # decline.
706
+ sig do
707
+ params(
708
+ reason:
709
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Decline::Reason::OrSymbol
710
+ ).returns(T.attached_class)
711
+ end
712
+ def self.new(
713
+ # The reason the card authorization was declined. This translates to a specific
714
+ # decline code that is sent to the card network.
715
+ reason:
716
+ )
717
+ end
494
718
 
495
719
  sig do
496
720
  override.returns(
497
- T::Array[
498
- Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::TaggedSymbol
499
- ]
721
+ {
722
+ reason:
723
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Decline::Reason::OrSymbol
724
+ }
500
725
  )
501
726
  end
502
- def self.values
727
+ def to_hash
728
+ end
729
+
730
+ # The reason the card authorization was declined. This translates to a specific
731
+ # decline code that is sent to the card network.
732
+ module Reason
733
+ extend Increase::Internal::Type::Enum
734
+
735
+ TaggedSymbol =
736
+ T.type_alias do
737
+ T.all(
738
+ Symbol,
739
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Decline::Reason
740
+ )
741
+ end
742
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
743
+
744
+ # The cardholder does not have sufficient funds to cover the transaction. The merchant may attempt to process the transaction again.
745
+ INSUFFICIENT_FUNDS =
746
+ T.let(
747
+ :insufficient_funds,
748
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Decline::Reason::TaggedSymbol
749
+ )
750
+
751
+ # This type of transaction is not allowed for this card. This transaction should not be retried.
752
+ TRANSACTION_NEVER_ALLOWED =
753
+ T.let(
754
+ :transaction_never_allowed,
755
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Decline::Reason::TaggedSymbol
756
+ )
757
+
758
+ # The transaction amount exceeds the cardholder's approval limit. The merchant may attempt to process the transaction again.
759
+ EXCEEDS_APPROVAL_LIMIT =
760
+ T.let(
761
+ :exceeds_approval_limit,
762
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Decline::Reason::TaggedSymbol
763
+ )
764
+
765
+ # The card has been temporarily disabled or not yet activated. The merchant may attempt to process the transaction again.
766
+ CARD_TEMPORARILY_DISABLED =
767
+ T.let(
768
+ :card_temporarily_disabled,
769
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Decline::Reason::TaggedSymbol
770
+ )
771
+
772
+ # The transaction is suspected to be fraudulent. The merchant may attempt to process the transaction again.
773
+ SUSPECTED_FRAUD =
774
+ T.let(
775
+ :suspected_fraud,
776
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Decline::Reason::TaggedSymbol
777
+ )
778
+
779
+ # The transaction was declined for another reason. The merchant may attempt to process the transaction again. This should be used sparingly.
780
+ OTHER =
781
+ T.let(
782
+ :other,
783
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Decline::Reason::TaggedSymbol
784
+ )
785
+
786
+ sig do
787
+ override.returns(
788
+ T::Array[
789
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Decline::Reason::TaggedSymbol
790
+ ]
791
+ )
792
+ end
793
+ def self.values
794
+ end
503
795
  end
504
796
  end
505
797
  end
@@ -521,6 +813,8 @@ module Increase
521
813
  end
522
814
  attr_accessor :result
523
815
 
816
+ # If your application was able to deliver the one-time passcode, this contains
817
+ # metadata about the delivery. Exactly one of `phone` or `email` must be provided.
524
818
  sig do
525
819
  returns(
526
820
  T.nilable(
@@ -551,6 +845,8 @@ module Increase
551
845
  def self.new(
552
846
  # Whether your application was able to deliver the one-time passcode.
553
847
  result:,
848
+ # If your application was able to deliver the one-time passcode, this contains
849
+ # metadata about the delivery. Exactly one of `phone` or `email` must be provided.
554
850
  success: nil
555
851
  )
556
852
  end
@@ -630,6 +926,8 @@ module Increase
630
926
  sig { params(phone: String).void }
631
927
  attr_writer :phone
632
928
 
929
+ # If your application was able to deliver the one-time passcode, this contains
930
+ # metadata about the delivery. Exactly one of `phone` or `email` must be provided.
633
931
  sig { params(email: String, phone: String).returns(T.attached_class) }
634
932
  def self.new(
635
933
  # The email address that was used to verify the cardholder via one-time passcode.
@@ -1167,25 +1167,22 @@ module Increase
1167
1167
 
1168
1168
  type result =
1169
1169
  :not_checked
1170
- | :postal_code_match_address_not_checked
1171
1170
  | :postal_code_match_address_no_match
1172
1171
  | :postal_code_no_match_address_match
1173
1172
  | :match
1174
1173
  | :no_match
1174
+ | :postal_code_match_address_not_checked
1175
1175
 
1176
1176
  module Result
1177
1177
  extend Increase::Internal::Type::Enum
1178
1178
 
1179
- # No address was provided in the authorization request.
1179
+ # No address information was provided in the authorization request.
1180
1180
  NOT_CHECKED: :not_checked
1181
1181
 
1182
- # Postal code matches, but the street address was not verified.
1183
- POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED: :postal_code_match_address_not_checked
1184
-
1185
- # Postal code matches, but the street address does not match.
1182
+ # Postal code matches, but the street address does not match or was not provided.
1186
1183
  POSTAL_CODE_MATCH_ADDRESS_NO_MATCH: :postal_code_match_address_no_match
1187
1184
 
1188
- # Postal code does not match, but the street address matches.
1185
+ # Postal code does not match, but the street address matches or was not provided.
1189
1186
  POSTAL_CODE_NO_MATCH_ADDRESS_MATCH: :postal_code_no_match_address_match
1190
1187
 
1191
1188
  # Postal code and street address match.
@@ -1194,6 +1191,9 @@ module Increase
1194
1191
  # Postal code and street address do not match.
1195
1192
  NO_MATCH: :no_match
1196
1193
 
1194
+ # Postal code matches, but the street address was not verified. (deprecated)
1195
+ POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED: :postal_code_match_address_not_checked
1196
+
1197
1197
  def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardAuthorization::Verification::CardholderAddress::result]
1198
1198
  end
1199
1199
  end
@@ -2135,25 +2135,22 @@ module Increase
2135
2135
 
2136
2136
  type result =
2137
2137
  :not_checked
2138
- | :postal_code_match_address_not_checked
2139
2138
  | :postal_code_match_address_no_match
2140
2139
  | :postal_code_no_match_address_match
2141
2140
  | :match
2142
2141
  | :no_match
2142
+ | :postal_code_match_address_not_checked
2143
2143
 
2144
2144
  module Result
2145
2145
  extend Increase::Internal::Type::Enum
2146
2146
 
2147
- # No address was provided in the authorization request.
2147
+ # No address information was provided in the authorization request.
2148
2148
  NOT_CHECKED: :not_checked
2149
2149
 
2150
- # Postal code matches, but the street address was not verified.
2151
- POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED: :postal_code_match_address_not_checked
2152
-
2153
- # Postal code matches, but the street address does not match.
2150
+ # Postal code matches, but the street address does not match or was not provided.
2154
2151
  POSTAL_CODE_MATCH_ADDRESS_NO_MATCH: :postal_code_match_address_no_match
2155
2152
 
2156
- # Postal code does not match, but the street address matches.
2153
+ # Postal code does not match, but the street address matches or was not provided.
2157
2154
  POSTAL_CODE_NO_MATCH_ADDRESS_MATCH: :postal_code_no_match_address_match
2158
2155
 
2159
2156
  # Postal code and street address match.
@@ -2162,6 +2159,9 @@ module Increase
2162
2159
  # Postal code and street address do not match.
2163
2160
  NO_MATCH: :no_match
2164
2161
 
2162
+ # Postal code matches, but the street address was not verified. (deprecated)
2163
+ POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED: :postal_code_match_address_not_checked
2164
+
2165
2165
  def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardDecline::Verification::CardholderAddress::result]
2166
2166
  end
2167
2167
  end
@@ -5568,25 +5568,22 @@ module Increase
5568
5568
 
5569
5569
  type result =
5570
5570
  :not_checked
5571
- | :postal_code_match_address_not_checked
5572
5571
  | :postal_code_match_address_no_match
5573
5572
  | :postal_code_no_match_address_match
5574
5573
  | :match
5575
5574
  | :no_match
5575
+ | :postal_code_match_address_not_checked
5576
5576
 
5577
5577
  module Result
5578
5578
  extend Increase::Internal::Type::Enum
5579
5579
 
5580
- # No address was provided in the authorization request.
5580
+ # No address information was provided in the authorization request.
5581
5581
  NOT_CHECKED: :not_checked
5582
5582
 
5583
- # Postal code matches, but the street address was not verified.
5584
- POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED: :postal_code_match_address_not_checked
5585
-
5586
- # Postal code matches, but the street address does not match.
5583
+ # Postal code matches, but the street address does not match or was not provided.
5587
5584
  POSTAL_CODE_MATCH_ADDRESS_NO_MATCH: :postal_code_match_address_no_match
5588
5585
 
5589
- # Postal code does not match, but the street address matches.
5586
+ # Postal code does not match, but the street address matches or was not provided.
5590
5587
  POSTAL_CODE_NO_MATCH_ADDRESS_MATCH: :postal_code_no_match_address_match
5591
5588
 
5592
5589
  # Postal code and street address match.
@@ -5595,6 +5592,9 @@ module Increase
5595
5592
  # Postal code and street address do not match.
5596
5593
  NO_MATCH: :no_match
5597
5594
 
5595
+ # Postal code matches, but the street address was not verified. (deprecated)
5596
+ POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED: :postal_code_match_address_not_checked
5597
+
5598
5598
  def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardValidation::Verification::CardholderAddress::result]
5599
5599
  end
5600
5600
  end
@@ -1159,25 +1159,22 @@ module Increase
1159
1159
 
1160
1160
  type result =
1161
1161
  :not_checked
1162
- | :postal_code_match_address_not_checked
1163
1162
  | :postal_code_match_address_no_match
1164
1163
  | :postal_code_no_match_address_match
1165
1164
  | :match
1166
1165
  | :no_match
1166
+ | :postal_code_match_address_not_checked
1167
1167
 
1168
1168
  module Result
1169
1169
  extend Increase::Internal::Type::Enum
1170
1170
 
1171
- # No address was provided in the authorization request.
1171
+ # No address information was provided in the authorization request.
1172
1172
  NOT_CHECKED: :not_checked
1173
1173
 
1174
- # Postal code matches, but the street address was not verified.
1175
- POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED: :postal_code_match_address_not_checked
1176
-
1177
- # Postal code matches, but the street address does not match.
1174
+ # Postal code matches, but the street address does not match or was not provided.
1178
1175
  POSTAL_CODE_MATCH_ADDRESS_NO_MATCH: :postal_code_match_address_no_match
1179
1176
 
1180
- # Postal code does not match, but the street address matches.
1177
+ # Postal code does not match, but the street address matches or was not provided.
1181
1178
  POSTAL_CODE_NO_MATCH_ADDRESS_MATCH: :postal_code_no_match_address_match
1182
1179
 
1183
1180
  # Postal code and street address match.
@@ -1186,6 +1183,9 @@ module Increase
1186
1183
  # Postal code and street address do not match.
1187
1184
  NO_MATCH: :no_match
1188
1185
 
1186
+ # Postal code matches, but the street address was not verified. (deprecated)
1187
+ POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED: :postal_code_match_address_not_checked
1188
+
1189
1189
  def self?.values: -> ::Array[Increase::Models::DeclinedTransaction::Source::CardDecline::Verification::CardholderAddress::result]
1190
1190
  end
1191
1191
  end