increase 1.209.0 → 1.211.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.
@@ -2790,6 +2790,20 @@ module Increase
2790
2790
  end
2791
2791
  attr_accessor :stand_in_processing_reason
2792
2792
 
2793
+ # The capability of the terminal being used to read the card. Shows whether a
2794
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
2795
+ # reads. This reflects the highest capability of the terminal — for example, a
2796
+ # terminal that supports both chip and magnetic stripe will be identified as
2797
+ # chip-capable.
2798
+ sig do
2799
+ returns(
2800
+ T.nilable(
2801
+ Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
2802
+ )
2803
+ )
2804
+ end
2805
+ attr_accessor :terminal_entry_capability
2806
+
2793
2807
  # Fields specific to the `visa` network.
2794
2808
  sig do
2795
2809
  params(
@@ -2804,6 +2818,10 @@ module Increase
2804
2818
  stand_in_processing_reason:
2805
2819
  T.nilable(
2806
2820
  Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::StandInProcessingReason::OrSymbol
2821
+ ),
2822
+ terminal_entry_capability:
2823
+ T.nilable(
2824
+ Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability::OrSymbol
2807
2825
  )
2808
2826
  ).returns(T.attached_class)
2809
2827
  end
@@ -2817,7 +2835,13 @@ module Increase
2817
2835
  point_of_service_entry_mode:,
2818
2836
  # Only present when `actioner: network`. Describes why a card authorization was
2819
2837
  # approved or declined by Visa through stand-in processing.
2820
- stand_in_processing_reason:
2838
+ stand_in_processing_reason:,
2839
+ # The capability of the terminal being used to read the card. Shows whether a
2840
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
2841
+ # reads. This reflects the highest capability of the terminal — for example, a
2842
+ # terminal that supports both chip and magnetic stripe will be identified as
2843
+ # chip-capable.
2844
+ terminal_entry_capability:
2821
2845
  )
2822
2846
  end
2823
2847
 
@@ -2835,6 +2859,10 @@ module Increase
2835
2859
  stand_in_processing_reason:
2836
2860
  T.nilable(
2837
2861
  Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::StandInProcessingReason::TaggedSymbol
2862
+ ),
2863
+ terminal_entry_capability:
2864
+ T.nilable(
2865
+ Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
2838
2866
  )
2839
2867
  }
2840
2868
  )
@@ -3092,6 +3120,90 @@ module Increase
3092
3120
  def self.values
3093
3121
  end
3094
3122
  end
3123
+
3124
+ # The capability of the terminal being used to read the card. Shows whether a
3125
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
3126
+ # reads. This reflects the highest capability of the terminal — for example, a
3127
+ # terminal that supports both chip and magnetic stripe will be identified as
3128
+ # chip-capable.
3129
+ module TerminalEntryCapability
3130
+ extend Increase::Internal::Type::Enum
3131
+
3132
+ TaggedSymbol =
3133
+ T.type_alias do
3134
+ T.all(
3135
+ Symbol,
3136
+ Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability
3137
+ )
3138
+ end
3139
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
3140
+
3141
+ # Unknown
3142
+ UNKNOWN =
3143
+ T.let(
3144
+ :unknown,
3145
+ Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
3146
+ )
3147
+
3148
+ # No terminal was used for this transaction.
3149
+ TERMINAL_NOT_USED =
3150
+ T.let(
3151
+ :terminal_not_used,
3152
+ Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
3153
+ )
3154
+
3155
+ # The terminal can only read magnetic stripes and does not have chip or contactless reading capability.
3156
+ MAGNETIC_STRIPE =
3157
+ T.let(
3158
+ :magnetic_stripe,
3159
+ Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
3160
+ )
3161
+
3162
+ # The terminal can only read barcodes.
3163
+ BARCODE =
3164
+ T.let(
3165
+ :barcode,
3166
+ Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
3167
+ )
3168
+
3169
+ # The terminal can only read cards via Optical Character Recognition.
3170
+ OPTICAL_CHARACTER_RECOGNITION =
3171
+ T.let(
3172
+ :optical_character_recognition,
3173
+ Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
3174
+ )
3175
+
3176
+ # The terminal supports contact chip cards and can also read the magnetic stripe. If contact chip is supported, this value is used regardless of whether contactless is also supported.
3177
+ CHIP_OR_CONTACTLESS =
3178
+ T.let(
3179
+ :chip_or_contactless,
3180
+ Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
3181
+ )
3182
+
3183
+ # The terminal supports contactless reads but does not support contact chip. Only used when the terminal lacks contact chip capability.
3184
+ CONTACTLESS_ONLY =
3185
+ T.let(
3186
+ :contactless_only,
3187
+ Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
3188
+ )
3189
+
3190
+ # The terminal has no card reading capability.
3191
+ NO_CAPABILITY =
3192
+ T.let(
3193
+ :no_capability,
3194
+ Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
3195
+ )
3196
+
3197
+ sig do
3198
+ override.returns(
3199
+ T::Array[
3200
+ Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
3201
+ ]
3202
+ )
3203
+ end
3204
+ def self.values
3205
+ end
3206
+ end
3095
3207
  end
3096
3208
  end
3097
3209
 
@@ -5163,6 +5275,20 @@ module Increase
5163
5275
  end
5164
5276
  attr_accessor :stand_in_processing_reason
5165
5277
 
5278
+ # The capability of the terminal being used to read the card. Shows whether a
5279
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
5280
+ # reads. This reflects the highest capability of the terminal — for example, a
5281
+ # terminal that supports both chip and magnetic stripe will be identified as
5282
+ # chip-capable.
5283
+ sig do
5284
+ returns(
5285
+ T.nilable(
5286
+ Increase::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
5287
+ )
5288
+ )
5289
+ end
5290
+ attr_accessor :terminal_entry_capability
5291
+
5166
5292
  # Fields specific to the `visa` network.
5167
5293
  sig do
5168
5294
  params(
@@ -5177,6 +5303,10 @@ module Increase
5177
5303
  stand_in_processing_reason:
5178
5304
  T.nilable(
5179
5305
  Increase::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::StandInProcessingReason::OrSymbol
5306
+ ),
5307
+ terminal_entry_capability:
5308
+ T.nilable(
5309
+ Increase::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::TerminalEntryCapability::OrSymbol
5180
5310
  )
5181
5311
  ).returns(T.attached_class)
5182
5312
  end
@@ -5190,7 +5320,13 @@ module Increase
5190
5320
  point_of_service_entry_mode:,
5191
5321
  # Only present when `actioner: network`. Describes why a card authorization was
5192
5322
  # approved or declined by Visa through stand-in processing.
5193
- stand_in_processing_reason:
5323
+ stand_in_processing_reason:,
5324
+ # The capability of the terminal being used to read the card. Shows whether a
5325
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
5326
+ # reads. This reflects the highest capability of the terminal — for example, a
5327
+ # terminal that supports both chip and magnetic stripe will be identified as
5328
+ # chip-capable.
5329
+ terminal_entry_capability:
5194
5330
  )
5195
5331
  end
5196
5332
 
@@ -5208,6 +5344,10 @@ module Increase
5208
5344
  stand_in_processing_reason:
5209
5345
  T.nilable(
5210
5346
  Increase::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::StandInProcessingReason::TaggedSymbol
5347
+ ),
5348
+ terminal_entry_capability:
5349
+ T.nilable(
5350
+ Increase::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
5211
5351
  )
5212
5352
  }
5213
5353
  )
@@ -5465,6 +5605,90 @@ module Increase
5465
5605
  def self.values
5466
5606
  end
5467
5607
  end
5608
+
5609
+ # The capability of the terminal being used to read the card. Shows whether a
5610
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
5611
+ # reads. This reflects the highest capability of the terminal — for example, a
5612
+ # terminal that supports both chip and magnetic stripe will be identified as
5613
+ # chip-capable.
5614
+ module TerminalEntryCapability
5615
+ extend Increase::Internal::Type::Enum
5616
+
5617
+ TaggedSymbol =
5618
+ T.type_alias do
5619
+ T.all(
5620
+ Symbol,
5621
+ Increase::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::TerminalEntryCapability
5622
+ )
5623
+ end
5624
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
5625
+
5626
+ # Unknown
5627
+ UNKNOWN =
5628
+ T.let(
5629
+ :unknown,
5630
+ Increase::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
5631
+ )
5632
+
5633
+ # No terminal was used for this transaction.
5634
+ TERMINAL_NOT_USED =
5635
+ T.let(
5636
+ :terminal_not_used,
5637
+ Increase::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
5638
+ )
5639
+
5640
+ # The terminal can only read magnetic stripes and does not have chip or contactless reading capability.
5641
+ MAGNETIC_STRIPE =
5642
+ T.let(
5643
+ :magnetic_stripe,
5644
+ Increase::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
5645
+ )
5646
+
5647
+ # The terminal can only read barcodes.
5648
+ BARCODE =
5649
+ T.let(
5650
+ :barcode,
5651
+ Increase::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
5652
+ )
5653
+
5654
+ # The terminal can only read cards via Optical Character Recognition.
5655
+ OPTICAL_CHARACTER_RECOGNITION =
5656
+ T.let(
5657
+ :optical_character_recognition,
5658
+ Increase::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
5659
+ )
5660
+
5661
+ # The terminal supports contact chip cards and can also read the magnetic stripe. If contact chip is supported, this value is used regardless of whether contactless is also supported.
5662
+ CHIP_OR_CONTACTLESS =
5663
+ T.let(
5664
+ :chip_or_contactless,
5665
+ Increase::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
5666
+ )
5667
+
5668
+ # The terminal supports contactless reads but does not support contact chip. Only used when the terminal lacks contact chip capability.
5669
+ CONTACTLESS_ONLY =
5670
+ T.let(
5671
+ :contactless_only,
5672
+ Increase::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
5673
+ )
5674
+
5675
+ # The terminal has no card reading capability.
5676
+ NO_CAPABILITY =
5677
+ T.let(
5678
+ :no_capability,
5679
+ Increase::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
5680
+ )
5681
+
5682
+ sig do
5683
+ override.returns(
5684
+ T::Array[
5685
+ Increase::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
5686
+ ]
5687
+ )
5688
+ end
5689
+ def self.values
5690
+ end
5691
+ end
5468
5692
  end
5469
5693
  end
5470
5694
 
@@ -7419,6 +7643,20 @@ module Increase
7419
7643
  end
7420
7644
  attr_accessor :stand_in_processing_reason
7421
7645
 
7646
+ # The capability of the terminal being used to read the card. Shows whether a
7647
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
7648
+ # reads. This reflects the highest capability of the terminal — for example, a
7649
+ # terminal that supports both chip and magnetic stripe will be identified as
7650
+ # chip-capable.
7651
+ sig do
7652
+ returns(
7653
+ T.nilable(
7654
+ Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
7655
+ )
7656
+ )
7657
+ end
7658
+ attr_accessor :terminal_entry_capability
7659
+
7422
7660
  # Fields specific to the `visa` network.
7423
7661
  sig do
7424
7662
  params(
@@ -7433,6 +7671,10 @@ module Increase
7433
7671
  stand_in_processing_reason:
7434
7672
  T.nilable(
7435
7673
  Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::StandInProcessingReason::OrSymbol
7674
+ ),
7675
+ terminal_entry_capability:
7676
+ T.nilable(
7677
+ Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::TerminalEntryCapability::OrSymbol
7436
7678
  )
7437
7679
  ).returns(T.attached_class)
7438
7680
  end
@@ -7446,7 +7688,13 @@ module Increase
7446
7688
  point_of_service_entry_mode:,
7447
7689
  # Only present when `actioner: network`. Describes why a card authorization was
7448
7690
  # approved or declined by Visa through stand-in processing.
7449
- stand_in_processing_reason:
7691
+ stand_in_processing_reason:,
7692
+ # The capability of the terminal being used to read the card. Shows whether a
7693
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
7694
+ # reads. This reflects the highest capability of the terminal — for example, a
7695
+ # terminal that supports both chip and magnetic stripe will be identified as
7696
+ # chip-capable.
7697
+ terminal_entry_capability:
7450
7698
  )
7451
7699
  end
7452
7700
 
@@ -7464,6 +7712,10 @@ module Increase
7464
7712
  stand_in_processing_reason:
7465
7713
  T.nilable(
7466
7714
  Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::StandInProcessingReason::TaggedSymbol
7715
+ ),
7716
+ terminal_entry_capability:
7717
+ T.nilable(
7718
+ Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
7467
7719
  )
7468
7720
  }
7469
7721
  )
@@ -7721,6 +7973,90 @@ module Increase
7721
7973
  def self.values
7722
7974
  end
7723
7975
  end
7976
+
7977
+ # The capability of the terminal being used to read the card. Shows whether a
7978
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
7979
+ # reads. This reflects the highest capability of the terminal — for example, a
7980
+ # terminal that supports both chip and magnetic stripe will be identified as
7981
+ # chip-capable.
7982
+ module TerminalEntryCapability
7983
+ extend Increase::Internal::Type::Enum
7984
+
7985
+ TaggedSymbol =
7986
+ T.type_alias do
7987
+ T.all(
7988
+ Symbol,
7989
+ Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::TerminalEntryCapability
7990
+ )
7991
+ end
7992
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
7993
+
7994
+ # Unknown
7995
+ UNKNOWN =
7996
+ T.let(
7997
+ :unknown,
7998
+ Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
7999
+ )
8000
+
8001
+ # No terminal was used for this transaction.
8002
+ TERMINAL_NOT_USED =
8003
+ T.let(
8004
+ :terminal_not_used,
8005
+ Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
8006
+ )
8007
+
8008
+ # The terminal can only read magnetic stripes and does not have chip or contactless reading capability.
8009
+ MAGNETIC_STRIPE =
8010
+ T.let(
8011
+ :magnetic_stripe,
8012
+ Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
8013
+ )
8014
+
8015
+ # The terminal can only read barcodes.
8016
+ BARCODE =
8017
+ T.let(
8018
+ :barcode,
8019
+ Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
8020
+ )
8021
+
8022
+ # The terminal can only read cards via Optical Character Recognition.
8023
+ OPTICAL_CHARACTER_RECOGNITION =
8024
+ T.let(
8025
+ :optical_character_recognition,
8026
+ Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
8027
+ )
8028
+
8029
+ # The terminal supports contact chip cards and can also read the magnetic stripe. If contact chip is supported, this value is used regardless of whether contactless is also supported.
8030
+ CHIP_OR_CONTACTLESS =
8031
+ T.let(
8032
+ :chip_or_contactless,
8033
+ Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
8034
+ )
8035
+
8036
+ # The terminal supports contactless reads but does not support contact chip. Only used when the terminal lacks contact chip capability.
8037
+ CONTACTLESS_ONLY =
8038
+ T.let(
8039
+ :contactless_only,
8040
+ Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
8041
+ )
8042
+
8043
+ # The terminal has no card reading capability.
8044
+ NO_CAPABILITY =
8045
+ T.let(
8046
+ :no_capability,
8047
+ Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
8048
+ )
8049
+
8050
+ sig do
8051
+ override.returns(
8052
+ T::Array[
8053
+ Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
8054
+ ]
8055
+ )
8056
+ end
8057
+ def self.values
8058
+ end
8059
+ end
7724
8060
  end
7725
8061
  end
7726
8062
 
@@ -9943,6 +10279,20 @@ module Increase
9943
10279
  end
9944
10280
  attr_accessor :stand_in_processing_reason
9945
10281
 
10282
+ # The capability of the terminal being used to read the card. Shows whether a
10283
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
10284
+ # reads. This reflects the highest capability of the terminal — for example, a
10285
+ # terminal that supports both chip and magnetic stripe will be identified as
10286
+ # chip-capable.
10287
+ sig do
10288
+ returns(
10289
+ T.nilable(
10290
+ Increase::CardPayment::Element::CardFinancial::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
10291
+ )
10292
+ )
10293
+ end
10294
+ attr_accessor :terminal_entry_capability
10295
+
9946
10296
  # Fields specific to the `visa` network.
9947
10297
  sig do
9948
10298
  params(
@@ -9957,6 +10307,10 @@ module Increase
9957
10307
  stand_in_processing_reason:
9958
10308
  T.nilable(
9959
10309
  Increase::CardPayment::Element::CardFinancial::NetworkDetails::Visa::StandInProcessingReason::OrSymbol
10310
+ ),
10311
+ terminal_entry_capability:
10312
+ T.nilable(
10313
+ Increase::CardPayment::Element::CardFinancial::NetworkDetails::Visa::TerminalEntryCapability::OrSymbol
9960
10314
  )
9961
10315
  ).returns(T.attached_class)
9962
10316
  end
@@ -9970,7 +10324,13 @@ module Increase
9970
10324
  point_of_service_entry_mode:,
9971
10325
  # Only present when `actioner: network`. Describes why a card authorization was
9972
10326
  # approved or declined by Visa through stand-in processing.
9973
- stand_in_processing_reason:
10327
+ stand_in_processing_reason:,
10328
+ # The capability of the terminal being used to read the card. Shows whether a
10329
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
10330
+ # reads. This reflects the highest capability of the terminal — for example, a
10331
+ # terminal that supports both chip and magnetic stripe will be identified as
10332
+ # chip-capable.
10333
+ terminal_entry_capability:
9974
10334
  )
9975
10335
  end
9976
10336
 
@@ -9988,6 +10348,10 @@ module Increase
9988
10348
  stand_in_processing_reason:
9989
10349
  T.nilable(
9990
10350
  Increase::CardPayment::Element::CardFinancial::NetworkDetails::Visa::StandInProcessingReason::TaggedSymbol
10351
+ ),
10352
+ terminal_entry_capability:
10353
+ T.nilable(
10354
+ Increase::CardPayment::Element::CardFinancial::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
9991
10355
  )
9992
10356
  }
9993
10357
  )
@@ -10245,6 +10609,90 @@ module Increase
10245
10609
  def self.values
10246
10610
  end
10247
10611
  end
10612
+
10613
+ # The capability of the terminal being used to read the card. Shows whether a
10614
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
10615
+ # reads. This reflects the highest capability of the terminal — for example, a
10616
+ # terminal that supports both chip and magnetic stripe will be identified as
10617
+ # chip-capable.
10618
+ module TerminalEntryCapability
10619
+ extend Increase::Internal::Type::Enum
10620
+
10621
+ TaggedSymbol =
10622
+ T.type_alias do
10623
+ T.all(
10624
+ Symbol,
10625
+ Increase::CardPayment::Element::CardFinancial::NetworkDetails::Visa::TerminalEntryCapability
10626
+ )
10627
+ end
10628
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
10629
+
10630
+ # Unknown
10631
+ UNKNOWN =
10632
+ T.let(
10633
+ :unknown,
10634
+ Increase::CardPayment::Element::CardFinancial::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
10635
+ )
10636
+
10637
+ # No terminal was used for this transaction.
10638
+ TERMINAL_NOT_USED =
10639
+ T.let(
10640
+ :terminal_not_used,
10641
+ Increase::CardPayment::Element::CardFinancial::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
10642
+ )
10643
+
10644
+ # The terminal can only read magnetic stripes and does not have chip or contactless reading capability.
10645
+ MAGNETIC_STRIPE =
10646
+ T.let(
10647
+ :magnetic_stripe,
10648
+ Increase::CardPayment::Element::CardFinancial::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
10649
+ )
10650
+
10651
+ # The terminal can only read barcodes.
10652
+ BARCODE =
10653
+ T.let(
10654
+ :barcode,
10655
+ Increase::CardPayment::Element::CardFinancial::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
10656
+ )
10657
+
10658
+ # The terminal can only read cards via Optical Character Recognition.
10659
+ OPTICAL_CHARACTER_RECOGNITION =
10660
+ T.let(
10661
+ :optical_character_recognition,
10662
+ Increase::CardPayment::Element::CardFinancial::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
10663
+ )
10664
+
10665
+ # The terminal supports contact chip cards and can also read the magnetic stripe. If contact chip is supported, this value is used regardless of whether contactless is also supported.
10666
+ CHIP_OR_CONTACTLESS =
10667
+ T.let(
10668
+ :chip_or_contactless,
10669
+ Increase::CardPayment::Element::CardFinancial::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
10670
+ )
10671
+
10672
+ # The terminal supports contactless reads but does not support contact chip. Only used when the terminal lacks contact chip capability.
10673
+ CONTACTLESS_ONLY =
10674
+ T.let(
10675
+ :contactless_only,
10676
+ Increase::CardPayment::Element::CardFinancial::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
10677
+ )
10678
+
10679
+ # The terminal has no card reading capability.
10680
+ NO_CAPABILITY =
10681
+ T.let(
10682
+ :no_capability,
10683
+ Increase::CardPayment::Element::CardFinancial::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
10684
+ )
10685
+
10686
+ sig do
10687
+ override.returns(
10688
+ T::Array[
10689
+ Increase::CardPayment::Element::CardFinancial::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
10690
+ ]
10691
+ )
10692
+ end
10693
+ def self.values
10694
+ end
10695
+ end
10248
10696
  end
10249
10697
  end
10250
10698
 
@@ -18957,6 +19405,20 @@ module Increase
18957
19405
  end
18958
19406
  attr_accessor :stand_in_processing_reason
18959
19407
 
19408
+ # The capability of the terminal being used to read the card. Shows whether a
19409
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
19410
+ # reads. This reflects the highest capability of the terminal — for example, a
19411
+ # terminal that supports both chip and magnetic stripe will be identified as
19412
+ # chip-capable.
19413
+ sig do
19414
+ returns(
19415
+ T.nilable(
19416
+ Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
19417
+ )
19418
+ )
19419
+ end
19420
+ attr_accessor :terminal_entry_capability
19421
+
18960
19422
  # Fields specific to the `visa` network.
18961
19423
  sig do
18962
19424
  params(
@@ -18971,6 +19433,10 @@ module Increase
18971
19433
  stand_in_processing_reason:
18972
19434
  T.nilable(
18973
19435
  Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::StandInProcessingReason::OrSymbol
19436
+ ),
19437
+ terminal_entry_capability:
19438
+ T.nilable(
19439
+ Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::TerminalEntryCapability::OrSymbol
18974
19440
  )
18975
19441
  ).returns(T.attached_class)
18976
19442
  end
@@ -18984,7 +19450,13 @@ module Increase
18984
19450
  point_of_service_entry_mode:,
18985
19451
  # Only present when `actioner: network`. Describes why a card authorization was
18986
19452
  # approved or declined by Visa through stand-in processing.
18987
- stand_in_processing_reason:
19453
+ stand_in_processing_reason:,
19454
+ # The capability of the terminal being used to read the card. Shows whether a
19455
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
19456
+ # reads. This reflects the highest capability of the terminal — for example, a
19457
+ # terminal that supports both chip and magnetic stripe will be identified as
19458
+ # chip-capable.
19459
+ terminal_entry_capability:
18988
19460
  )
18989
19461
  end
18990
19462
 
@@ -19002,6 +19474,10 @@ module Increase
19002
19474
  stand_in_processing_reason:
19003
19475
  T.nilable(
19004
19476
  Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::StandInProcessingReason::TaggedSymbol
19477
+ ),
19478
+ terminal_entry_capability:
19479
+ T.nilable(
19480
+ Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
19005
19481
  )
19006
19482
  }
19007
19483
  )
@@ -19259,6 +19735,90 @@ module Increase
19259
19735
  def self.values
19260
19736
  end
19261
19737
  end
19738
+
19739
+ # The capability of the terminal being used to read the card. Shows whether a
19740
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
19741
+ # reads. This reflects the highest capability of the terminal — for example, a
19742
+ # terminal that supports both chip and magnetic stripe will be identified as
19743
+ # chip-capable.
19744
+ module TerminalEntryCapability
19745
+ extend Increase::Internal::Type::Enum
19746
+
19747
+ TaggedSymbol =
19748
+ T.type_alias do
19749
+ T.all(
19750
+ Symbol,
19751
+ Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::TerminalEntryCapability
19752
+ )
19753
+ end
19754
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
19755
+
19756
+ # Unknown
19757
+ UNKNOWN =
19758
+ T.let(
19759
+ :unknown,
19760
+ Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
19761
+ )
19762
+
19763
+ # No terminal was used for this transaction.
19764
+ TERMINAL_NOT_USED =
19765
+ T.let(
19766
+ :terminal_not_used,
19767
+ Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
19768
+ )
19769
+
19770
+ # The terminal can only read magnetic stripes and does not have chip or contactless reading capability.
19771
+ MAGNETIC_STRIPE =
19772
+ T.let(
19773
+ :magnetic_stripe,
19774
+ Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
19775
+ )
19776
+
19777
+ # The terminal can only read barcodes.
19778
+ BARCODE =
19779
+ T.let(
19780
+ :barcode,
19781
+ Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
19782
+ )
19783
+
19784
+ # The terminal can only read cards via Optical Character Recognition.
19785
+ OPTICAL_CHARACTER_RECOGNITION =
19786
+ T.let(
19787
+ :optical_character_recognition,
19788
+ Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
19789
+ )
19790
+
19791
+ # The terminal supports contact chip cards and can also read the magnetic stripe. If contact chip is supported, this value is used regardless of whether contactless is also supported.
19792
+ CHIP_OR_CONTACTLESS =
19793
+ T.let(
19794
+ :chip_or_contactless,
19795
+ Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
19796
+ )
19797
+
19798
+ # The terminal supports contactless reads but does not support contact chip. Only used when the terminal lacks contact chip capability.
19799
+ CONTACTLESS_ONLY =
19800
+ T.let(
19801
+ :contactless_only,
19802
+ Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
19803
+ )
19804
+
19805
+ # The terminal has no card reading capability.
19806
+ NO_CAPABILITY =
19807
+ T.let(
19808
+ :no_capability,
19809
+ Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
19810
+ )
19811
+
19812
+ sig do
19813
+ override.returns(
19814
+ T::Array[
19815
+ Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::TerminalEntryCapability::TaggedSymbol
19816
+ ]
19817
+ )
19818
+ end
19819
+ def self.values
19820
+ end
19821
+ end
19262
19822
  end
19263
19823
  end
19264
19824