increase 1.210.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.
@@ -1103,7 +1103,21 @@ module Increase
1103
1103
  },
1104
1104
  nil?: true
1105
1105
 
1106
- # @!method initialize(electronic_commerce_indicator:, point_of_service_entry_mode:, stand_in_processing_reason:)
1106
+ # @!attribute terminal_entry_capability
1107
+ # The capability of the terminal being used to read the card. Shows whether a
1108
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
1109
+ # reads. This reflects the highest capability of the terminal — for example, a
1110
+ # terminal that supports both chip and magnetic stripe will be identified as
1111
+ # chip-capable.
1112
+ #
1113
+ # @return [Symbol, Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability, nil]
1114
+ required :terminal_entry_capability,
1115
+ enum: -> {
1116
+ Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability
1117
+ },
1118
+ nil?: true
1119
+
1120
+ # @!method initialize(electronic_commerce_indicator:, point_of_service_entry_mode:, stand_in_processing_reason:, terminal_entry_capability:)
1107
1121
  # Some parameter documentations has been truncated, see
1108
1122
  # {Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::Visa}
1109
1123
  # for more details.
@@ -1115,6 +1129,8 @@ module Increase
1115
1129
  # @param point_of_service_entry_mode [Symbol, Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::Visa::PointOfServiceEntryMode, nil] The method used to enter the cardholder's primary account number and card expira
1116
1130
  #
1117
1131
  # @param stand_in_processing_reason [Symbol, Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::Visa::StandInProcessingReason, nil] Only present when `actioner: network`. Describes why a card authorization was ap
1132
+ #
1133
+ # @param terminal_entry_capability [Symbol, Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability, nil] The capability of the terminal being used to read the card. Shows whether a term
1118
1134
 
1119
1135
  # For electronic commerce transactions, this identifies the level of security used
1120
1136
  # in obtaining the customer's payment credential. For mail or telephone order
@@ -1227,6 +1243,44 @@ module Increase
1227
1243
  # @!method self.values
1228
1244
  # @return [Array<Symbol>]
1229
1245
  end
1246
+
1247
+ # The capability of the terminal being used to read the card. Shows whether a
1248
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
1249
+ # reads. This reflects the highest capability of the terminal — for example, a
1250
+ # terminal that supports both chip and magnetic stripe will be identified as
1251
+ # chip-capable.
1252
+ #
1253
+ # @see Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::Visa#terminal_entry_capability
1254
+ module TerminalEntryCapability
1255
+ extend Increase::Internal::Type::Enum
1256
+
1257
+ # Unknown
1258
+ UNKNOWN = :unknown
1259
+
1260
+ # No terminal was used for this transaction.
1261
+ TERMINAL_NOT_USED = :terminal_not_used
1262
+
1263
+ # The terminal can only read magnetic stripes and does not have chip or contactless reading capability.
1264
+ MAGNETIC_STRIPE = :magnetic_stripe
1265
+
1266
+ # The terminal can only read barcodes.
1267
+ BARCODE = :barcode
1268
+
1269
+ # The terminal can only read cards via Optical Character Recognition.
1270
+ OPTICAL_CHARACTER_RECOGNITION = :optical_character_recognition
1271
+
1272
+ # 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.
1273
+ CHIP_OR_CONTACTLESS = :chip_or_contactless
1274
+
1275
+ # The terminal supports contactless reads but does not support contact chip. Only used when the terminal lacks contact chip capability.
1276
+ CONTACTLESS_ONLY = :contactless_only
1277
+
1278
+ # The terminal has no card reading capability.
1279
+ NO_CAPABILITY = :no_capability
1280
+
1281
+ # @!method self.values
1282
+ # @return [Array<Symbol>]
1283
+ end
1230
1284
  end
1231
1285
  end
1232
1286
 
@@ -2325,7 +2379,21 @@ module Increase
2325
2379
  },
2326
2380
  nil?: true
2327
2381
 
2328
- # @!method initialize(electronic_commerce_indicator:, point_of_service_entry_mode:, stand_in_processing_reason:)
2382
+ # @!attribute terminal_entry_capability
2383
+ # The capability of the terminal being used to read the card. Shows whether a
2384
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
2385
+ # reads. This reflects the highest capability of the terminal — for example, a
2386
+ # terminal that supports both chip and magnetic stripe will be identified as
2387
+ # chip-capable.
2388
+ #
2389
+ # @return [Symbol, Increase::Models::RealTimeDecision::CardBalanceInquiry::NetworkDetails::Visa::TerminalEntryCapability, nil]
2390
+ required :terminal_entry_capability,
2391
+ enum: -> {
2392
+ Increase::RealTimeDecision::CardBalanceInquiry::NetworkDetails::Visa::TerminalEntryCapability
2393
+ },
2394
+ nil?: true
2395
+
2396
+ # @!method initialize(electronic_commerce_indicator:, point_of_service_entry_mode:, stand_in_processing_reason:, terminal_entry_capability:)
2329
2397
  # Some parameter documentations has been truncated, see
2330
2398
  # {Increase::Models::RealTimeDecision::CardBalanceInquiry::NetworkDetails::Visa}
2331
2399
  # for more details.
@@ -2337,6 +2405,8 @@ module Increase
2337
2405
  # @param point_of_service_entry_mode [Symbol, Increase::Models::RealTimeDecision::CardBalanceInquiry::NetworkDetails::Visa::PointOfServiceEntryMode, nil] The method used to enter the cardholder's primary account number and card expira
2338
2406
  #
2339
2407
  # @param stand_in_processing_reason [Symbol, Increase::Models::RealTimeDecision::CardBalanceInquiry::NetworkDetails::Visa::StandInProcessingReason, nil] Only present when `actioner: network`. Describes why a card authorization was ap
2408
+ #
2409
+ # @param terminal_entry_capability [Symbol, Increase::Models::RealTimeDecision::CardBalanceInquiry::NetworkDetails::Visa::TerminalEntryCapability, nil] The capability of the terminal being used to read the card. Shows whether a term
2340
2410
 
2341
2411
  # For electronic commerce transactions, this identifies the level of security used
2342
2412
  # in obtaining the customer's payment credential. For mail or telephone order
@@ -2449,6 +2519,44 @@ module Increase
2449
2519
  # @!method self.values
2450
2520
  # @return [Array<Symbol>]
2451
2521
  end
2522
+
2523
+ # The capability of the terminal being used to read the card. Shows whether a
2524
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
2525
+ # reads. This reflects the highest capability of the terminal — for example, a
2526
+ # terminal that supports both chip and magnetic stripe will be identified as
2527
+ # chip-capable.
2528
+ #
2529
+ # @see Increase::Models::RealTimeDecision::CardBalanceInquiry::NetworkDetails::Visa#terminal_entry_capability
2530
+ module TerminalEntryCapability
2531
+ extend Increase::Internal::Type::Enum
2532
+
2533
+ # Unknown
2534
+ UNKNOWN = :unknown
2535
+
2536
+ # No terminal was used for this transaction.
2537
+ TERMINAL_NOT_USED = :terminal_not_used
2538
+
2539
+ # The terminal can only read magnetic stripes and does not have chip or contactless reading capability.
2540
+ MAGNETIC_STRIPE = :magnetic_stripe
2541
+
2542
+ # The terminal can only read barcodes.
2543
+ BARCODE = :barcode
2544
+
2545
+ # The terminal can only read cards via Optical Character Recognition.
2546
+ OPTICAL_CHARACTER_RECOGNITION = :optical_character_recognition
2547
+
2548
+ # 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.
2549
+ CHIP_OR_CONTACTLESS = :chip_or_contactless
2550
+
2551
+ # The terminal supports contactless reads but does not support contact chip. Only used when the terminal lacks contact chip capability.
2552
+ CONTACTLESS_ONLY = :contactless_only
2553
+
2554
+ # The terminal has no card reading capability.
2555
+ NO_CAPABILITY = :no_capability
2556
+
2557
+ # @!method self.values
2558
+ # @return [Array<Symbol>]
2559
+ end
2452
2560
  end
2453
2561
  end
2454
2562
 
@@ -2248,7 +2248,21 @@ module Increase
2248
2248
  },
2249
2249
  nil?: true
2250
2250
 
2251
- # @!method initialize(electronic_commerce_indicator:, point_of_service_entry_mode:, stand_in_processing_reason:)
2251
+ # @!attribute terminal_entry_capability
2252
+ # The capability of the terminal being used to read the card. Shows whether a
2253
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
2254
+ # reads. This reflects the highest capability of the terminal — for example, a
2255
+ # terminal that supports both chip and magnetic stripe will be identified as
2256
+ # chip-capable.
2257
+ #
2258
+ # @return [Symbol, Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::Visa::TerminalEntryCapability, nil]
2259
+ required :terminal_entry_capability,
2260
+ enum: -> {
2261
+ Increase::Transaction::Source::CardFinancial::NetworkDetails::Visa::TerminalEntryCapability
2262
+ },
2263
+ nil?: true
2264
+
2265
+ # @!method initialize(electronic_commerce_indicator:, point_of_service_entry_mode:, stand_in_processing_reason:, terminal_entry_capability:)
2252
2266
  # Some parameter documentations has been truncated, see
2253
2267
  # {Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::Visa} for
2254
2268
  # more details.
@@ -2260,6 +2274,8 @@ module Increase
2260
2274
  # @param point_of_service_entry_mode [Symbol, Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::Visa::PointOfServiceEntryMode, nil] The method used to enter the cardholder's primary account number and card expira
2261
2275
  #
2262
2276
  # @param stand_in_processing_reason [Symbol, Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::Visa::StandInProcessingReason, nil] Only present when `actioner: network`. Describes why a card authorization was ap
2277
+ #
2278
+ # @param terminal_entry_capability [Symbol, Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::Visa::TerminalEntryCapability, nil] The capability of the terminal being used to read the card. Shows whether a term
2263
2279
 
2264
2280
  # For electronic commerce transactions, this identifies the level of security used
2265
2281
  # in obtaining the customer's payment credential. For mail or telephone order
@@ -2372,6 +2388,44 @@ module Increase
2372
2388
  # @!method self.values
2373
2389
  # @return [Array<Symbol>]
2374
2390
  end
2391
+
2392
+ # The capability of the terminal being used to read the card. Shows whether a
2393
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
2394
+ # reads. This reflects the highest capability of the terminal — for example, a
2395
+ # terminal that supports both chip and magnetic stripe will be identified as
2396
+ # chip-capable.
2397
+ #
2398
+ # @see Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::Visa#terminal_entry_capability
2399
+ module TerminalEntryCapability
2400
+ extend Increase::Internal::Type::Enum
2401
+
2402
+ # Unknown
2403
+ UNKNOWN = :unknown
2404
+
2405
+ # No terminal was used for this transaction.
2406
+ TERMINAL_NOT_USED = :terminal_not_used
2407
+
2408
+ # The terminal can only read magnetic stripes and does not have chip or contactless reading capability.
2409
+ MAGNETIC_STRIPE = :magnetic_stripe
2410
+
2411
+ # The terminal can only read barcodes.
2412
+ BARCODE = :barcode
2413
+
2414
+ # The terminal can only read cards via Optical Character Recognition.
2415
+ OPTICAL_CHARACTER_RECOGNITION = :optical_character_recognition
2416
+
2417
+ # 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.
2418
+ CHIP_OR_CONTACTLESS = :chip_or_contactless
2419
+
2420
+ # The terminal supports contactless reads but does not support contact chip. Only used when the terminal lacks contact chip capability.
2421
+ CONTACTLESS_ONLY = :contactless_only
2422
+
2423
+ # The terminal has no card reading capability.
2424
+ NO_CAPABILITY = :no_capability
2425
+
2426
+ # @!method self.values
2427
+ # @return [Array<Symbol>]
2428
+ end
2375
2429
  end
2376
2430
  end
2377
2431
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.210.0"
4
+ VERSION = "1.211.0"
5
5
  end