increase 1.108.0 → 1.109.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/increase/models/card_payment.rb +80 -8
- data/lib/increase/models/declined_transaction.rb +10 -1
- data/lib/increase/models/pending_transaction.rb +10 -1
- data/lib/increase/models/real_time_decision.rb +10 -1
- data/lib/increase/models/transaction.rb +30 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_payment.rbi +80 -0
- data/rbi/increase/models/declined_transaction.rbi +10 -0
- data/rbi/increase/models/pending_transaction.rbi +10 -0
- data/rbi/increase/models/real_time_decision.rbi +10 -0
- data/rbi/increase/models/transaction.rbi +30 -0
- data/sig/increase/models/card_payment.rbs +40 -0
- data/sig/increase/models/declined_transaction.rbs +5 -0
- data/sig/increase/models/pending_transaction.rbs +5 -0
- data/sig/increase/models/real_time_decision.rbs +5 -0
- data/sig/increase/models/transaction.rbs +15 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2eee6d91aa1634d4306e2c832e07288e9213ac47e1ce80bb7749bf51876af382
|
|
4
|
+
data.tar.gz: 7ac00baf4f0d1f9d646d30de97fd532002cb628598df734527c82c7cf46259c7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1b3fa0da84c2cde706862d1edd0304ce0ee3d2c6156ec09e54ab009b557202f40c458392227494f6c12a8138f68949f02ba1538eda51c7cddb02bb2de1f783f2
|
|
7
|
+
data.tar.gz: 141ec264bf54f57aa55a632def927efe0fecad8daeb32c58292360991958cb347d7f0745bdff6545d67803608392145048430ba9f8d7107687636287d439de13
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.109.0 (2025-10-14)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.108.0...v1.109.0](https://github.com/Increase/increase-ruby/compare/v1.108.0...v1.109.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([a4bd69c](https://github.com/Increase/increase-ruby/commit/a4bd69cc63116410a180ab36d84a28b7612b0bdb))
|
|
10
|
+
|
|
3
11
|
## 1.108.0 (2025-10-14)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.107.1...v1.108.0](https://github.com/Increase/increase-ruby/compare/v1.107.1...v1.108.0)
|
data/README.md
CHANGED
|
@@ -1527,6 +1527,13 @@ module Increase
|
|
|
1527
1527
|
|
|
1528
1528
|
# @see Increase::Models::CardPayment::Element::CardAuthorization#network_identifiers
|
|
1529
1529
|
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
|
1530
|
+
# @!attribute authorization_identification_response
|
|
1531
|
+
# The randomly generated 6-character Authorization Identification Response code
|
|
1532
|
+
# sent back to the acquirer in an approved response.
|
|
1533
|
+
#
|
|
1534
|
+
# @return [String, nil]
|
|
1535
|
+
required :authorization_identification_response, String, nil?: true
|
|
1536
|
+
|
|
1530
1537
|
# @!attribute retrieval_reference_number
|
|
1531
1538
|
# A life-cycle identifier used across e.g., an authorization and a reversal.
|
|
1532
1539
|
# Expected to be unique per acquirer within a window of time. For some card
|
|
@@ -1549,13 +1556,15 @@ module Increase
|
|
|
1549
1556
|
# @return [String, nil]
|
|
1550
1557
|
required :transaction_id, String, nil?: true
|
|
1551
1558
|
|
|
1552
|
-
# @!method initialize(retrieval_reference_number:, trace_number:, transaction_id:)
|
|
1559
|
+
# @!method initialize(authorization_identification_response:, retrieval_reference_number:, trace_number:, transaction_id:)
|
|
1553
1560
|
# Some parameter documentations has been truncated, see
|
|
1554
1561
|
# {Increase::Models::CardPayment::Element::CardAuthorization::NetworkIdentifiers}
|
|
1555
1562
|
# for more details.
|
|
1556
1563
|
#
|
|
1557
1564
|
# Network-specific identifiers for a specific request or transaction.
|
|
1558
1565
|
#
|
|
1566
|
+
# @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
|
|
1567
|
+
#
|
|
1559
1568
|
# @param retrieval_reference_number [String, nil] A life-cycle identifier used across e.g., an authorization and a reversal. Expec
|
|
1560
1569
|
#
|
|
1561
1570
|
# @param trace_number [String, nil] A counter used to verify an individual authorization. Expected to be unique per
|
|
@@ -2788,6 +2797,13 @@ module Increase
|
|
|
2788
2797
|
|
|
2789
2798
|
# @see Increase::Models::CardPayment::Element::CardDecline#network_identifiers
|
|
2790
2799
|
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
|
2800
|
+
# @!attribute authorization_identification_response
|
|
2801
|
+
# The randomly generated 6-character Authorization Identification Response code
|
|
2802
|
+
# sent back to the acquirer in an approved response.
|
|
2803
|
+
#
|
|
2804
|
+
# @return [String, nil]
|
|
2805
|
+
required :authorization_identification_response, String, nil?: true
|
|
2806
|
+
|
|
2791
2807
|
# @!attribute retrieval_reference_number
|
|
2792
2808
|
# A life-cycle identifier used across e.g., an authorization and a reversal.
|
|
2793
2809
|
# Expected to be unique per acquirer within a window of time. For some card
|
|
@@ -2810,13 +2826,15 @@ module Increase
|
|
|
2810
2826
|
# @return [String, nil]
|
|
2811
2827
|
required :transaction_id, String, nil?: true
|
|
2812
2828
|
|
|
2813
|
-
# @!method initialize(retrieval_reference_number:, trace_number:, transaction_id:)
|
|
2829
|
+
# @!method initialize(authorization_identification_response:, retrieval_reference_number:, trace_number:, transaction_id:)
|
|
2814
2830
|
# Some parameter documentations has been truncated, see
|
|
2815
2831
|
# {Increase::Models::CardPayment::Element::CardDecline::NetworkIdentifiers} for
|
|
2816
2832
|
# more details.
|
|
2817
2833
|
#
|
|
2818
2834
|
# Network-specific identifiers for a specific request or transaction.
|
|
2819
2835
|
#
|
|
2836
|
+
# @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
|
|
2837
|
+
#
|
|
2820
2838
|
# @param retrieval_reference_number [String, nil] A life-cycle identifier used across e.g., an authorization and a reversal. Expec
|
|
2821
2839
|
#
|
|
2822
2840
|
# @param trace_number [String, nil] A counter used to verify an individual authorization. Expected to be unique per
|
|
@@ -3235,6 +3253,13 @@ module Increase
|
|
|
3235
3253
|
|
|
3236
3254
|
# @see Increase::Models::CardPayment::Element::CardFuelConfirmation#network_identifiers
|
|
3237
3255
|
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
|
3256
|
+
# @!attribute authorization_identification_response
|
|
3257
|
+
# The randomly generated 6-character Authorization Identification Response code
|
|
3258
|
+
# sent back to the acquirer in an approved response.
|
|
3259
|
+
#
|
|
3260
|
+
# @return [String, nil]
|
|
3261
|
+
required :authorization_identification_response, String, nil?: true
|
|
3262
|
+
|
|
3238
3263
|
# @!attribute retrieval_reference_number
|
|
3239
3264
|
# A life-cycle identifier used across e.g., an authorization and a reversal.
|
|
3240
3265
|
# Expected to be unique per acquirer within a window of time. For some card
|
|
@@ -3257,13 +3282,15 @@ module Increase
|
|
|
3257
3282
|
# @return [String, nil]
|
|
3258
3283
|
required :transaction_id, String, nil?: true
|
|
3259
3284
|
|
|
3260
|
-
# @!method initialize(retrieval_reference_number:, trace_number:, transaction_id:)
|
|
3285
|
+
# @!method initialize(authorization_identification_response:, retrieval_reference_number:, trace_number:, transaction_id:)
|
|
3261
3286
|
# Some parameter documentations has been truncated, see
|
|
3262
3287
|
# {Increase::Models::CardPayment::Element::CardFuelConfirmation::NetworkIdentifiers}
|
|
3263
3288
|
# for more details.
|
|
3264
3289
|
#
|
|
3265
3290
|
# Network-specific identifiers for a specific request or transaction.
|
|
3266
3291
|
#
|
|
3292
|
+
# @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
|
|
3293
|
+
#
|
|
3267
3294
|
# @param retrieval_reference_number [String, nil] A life-cycle identifier used across e.g., an authorization and a reversal. Expec
|
|
3268
3295
|
#
|
|
3269
3296
|
# @param trace_number [String, nil] A counter used to verify an individual authorization. Expected to be unique per
|
|
@@ -3856,6 +3883,13 @@ module Increase
|
|
|
3856
3883
|
|
|
3857
3884
|
# @see Increase::Models::CardPayment::Element::CardIncrement#network_identifiers
|
|
3858
3885
|
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
|
3886
|
+
# @!attribute authorization_identification_response
|
|
3887
|
+
# The randomly generated 6-character Authorization Identification Response code
|
|
3888
|
+
# sent back to the acquirer in an approved response.
|
|
3889
|
+
#
|
|
3890
|
+
# @return [String, nil]
|
|
3891
|
+
required :authorization_identification_response, String, nil?: true
|
|
3892
|
+
|
|
3859
3893
|
# @!attribute retrieval_reference_number
|
|
3860
3894
|
# A life-cycle identifier used across e.g., an authorization and a reversal.
|
|
3861
3895
|
# Expected to be unique per acquirer within a window of time. For some card
|
|
@@ -3878,13 +3912,15 @@ module Increase
|
|
|
3878
3912
|
# @return [String, nil]
|
|
3879
3913
|
required :transaction_id, String, nil?: true
|
|
3880
3914
|
|
|
3881
|
-
# @!method initialize(retrieval_reference_number:, trace_number:, transaction_id:)
|
|
3915
|
+
# @!method initialize(authorization_identification_response:, retrieval_reference_number:, trace_number:, transaction_id:)
|
|
3882
3916
|
# Some parameter documentations has been truncated, see
|
|
3883
3917
|
# {Increase::Models::CardPayment::Element::CardIncrement::NetworkIdentifiers} for
|
|
3884
3918
|
# more details.
|
|
3885
3919
|
#
|
|
3886
3920
|
# Network-specific identifiers for a specific request or transaction.
|
|
3887
3921
|
#
|
|
3922
|
+
# @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
|
|
3923
|
+
#
|
|
3888
3924
|
# @param retrieval_reference_number [String, nil] A life-cycle identifier used across e.g., an authorization and a reversal. Expec
|
|
3889
3925
|
#
|
|
3890
3926
|
# @param trace_number [String, nil] A counter used to verify an individual authorization. Expected to be unique per
|
|
@@ -4248,6 +4284,13 @@ module Increase
|
|
|
4248
4284
|
# @return [String]
|
|
4249
4285
|
required :acquirer_reference_number, String
|
|
4250
4286
|
|
|
4287
|
+
# @!attribute authorization_identification_response
|
|
4288
|
+
# The randomly generated 6-character Authorization Identification Response code
|
|
4289
|
+
# sent back to the acquirer in an approved response.
|
|
4290
|
+
#
|
|
4291
|
+
# @return [String, nil]
|
|
4292
|
+
required :authorization_identification_response, String, nil?: true
|
|
4293
|
+
|
|
4251
4294
|
# @!attribute transaction_id
|
|
4252
4295
|
# A globally unique transaction identifier provided by the card network, used
|
|
4253
4296
|
# across multiple life-cycle requests.
|
|
@@ -4255,7 +4298,7 @@ module Increase
|
|
|
4255
4298
|
# @return [String, nil]
|
|
4256
4299
|
required :transaction_id, String, nil?: true
|
|
4257
4300
|
|
|
4258
|
-
# @!method initialize(acquirer_business_id:, acquirer_reference_number:, transaction_id:)
|
|
4301
|
+
# @!method initialize(acquirer_business_id:, acquirer_reference_number:, authorization_identification_response:, transaction_id:)
|
|
4259
4302
|
# Some parameter documentations has been truncated, see
|
|
4260
4303
|
# {Increase::Models::CardPayment::Element::CardRefund::NetworkIdentifiers} for
|
|
4261
4304
|
# more details.
|
|
@@ -4266,6 +4309,8 @@ module Increase
|
|
|
4266
4309
|
#
|
|
4267
4310
|
# @param acquirer_reference_number [String] A globally unique identifier for this settlement.
|
|
4268
4311
|
#
|
|
4312
|
+
# @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
|
|
4313
|
+
#
|
|
4269
4314
|
# @param transaction_id [String, nil] A globally unique transaction identifier provided by the card network, used acro
|
|
4270
4315
|
end
|
|
4271
4316
|
|
|
@@ -5498,6 +5543,13 @@ module Increase
|
|
|
5498
5543
|
|
|
5499
5544
|
# @see Increase::Models::CardPayment::Element::CardReversal#network_identifiers
|
|
5500
5545
|
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
|
5546
|
+
# @!attribute authorization_identification_response
|
|
5547
|
+
# The randomly generated 6-character Authorization Identification Response code
|
|
5548
|
+
# sent back to the acquirer in an approved response.
|
|
5549
|
+
#
|
|
5550
|
+
# @return [String, nil]
|
|
5551
|
+
required :authorization_identification_response, String, nil?: true
|
|
5552
|
+
|
|
5501
5553
|
# @!attribute retrieval_reference_number
|
|
5502
5554
|
# A life-cycle identifier used across e.g., an authorization and a reversal.
|
|
5503
5555
|
# Expected to be unique per acquirer within a window of time. For some card
|
|
@@ -5520,13 +5572,15 @@ module Increase
|
|
|
5520
5572
|
# @return [String, nil]
|
|
5521
5573
|
required :transaction_id, String, nil?: true
|
|
5522
5574
|
|
|
5523
|
-
# @!method initialize(retrieval_reference_number:, trace_number:, transaction_id:)
|
|
5575
|
+
# @!method initialize(authorization_identification_response:, retrieval_reference_number:, trace_number:, transaction_id:)
|
|
5524
5576
|
# Some parameter documentations has been truncated, see
|
|
5525
5577
|
# {Increase::Models::CardPayment::Element::CardReversal::NetworkIdentifiers} for
|
|
5526
5578
|
# more details.
|
|
5527
5579
|
#
|
|
5528
5580
|
# Network-specific identifiers for a specific request or transaction.
|
|
5529
5581
|
#
|
|
5582
|
+
# @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
|
|
5583
|
+
#
|
|
5530
5584
|
# @param retrieval_reference_number [String, nil] A life-cycle identifier used across e.g., an authorization and a reversal. Expec
|
|
5531
5585
|
#
|
|
5532
5586
|
# @param trace_number [String, nil] A counter used to verify an individual authorization. Expected to be unique per
|
|
@@ -5966,6 +6020,13 @@ module Increase
|
|
|
5966
6020
|
# @return [String]
|
|
5967
6021
|
required :acquirer_reference_number, String
|
|
5968
6022
|
|
|
6023
|
+
# @!attribute authorization_identification_response
|
|
6024
|
+
# The randomly generated 6-character Authorization Identification Response code
|
|
6025
|
+
# sent back to the acquirer in an approved response.
|
|
6026
|
+
#
|
|
6027
|
+
# @return [String, nil]
|
|
6028
|
+
required :authorization_identification_response, String, nil?: true
|
|
6029
|
+
|
|
5969
6030
|
# @!attribute transaction_id
|
|
5970
6031
|
# A globally unique transaction identifier provided by the card network, used
|
|
5971
6032
|
# across multiple life-cycle requests.
|
|
@@ -5973,7 +6034,7 @@ module Increase
|
|
|
5973
6034
|
# @return [String, nil]
|
|
5974
6035
|
required :transaction_id, String, nil?: true
|
|
5975
6036
|
|
|
5976
|
-
# @!method initialize(acquirer_business_id:, acquirer_reference_number:, transaction_id:)
|
|
6037
|
+
# @!method initialize(acquirer_business_id:, acquirer_reference_number:, authorization_identification_response:, transaction_id:)
|
|
5977
6038
|
# Some parameter documentations has been truncated, see
|
|
5978
6039
|
# {Increase::Models::CardPayment::Element::CardSettlement::NetworkIdentifiers} for
|
|
5979
6040
|
# more details.
|
|
@@ -5984,6 +6045,8 @@ module Increase
|
|
|
5984
6045
|
#
|
|
5985
6046
|
# @param acquirer_reference_number [String] A globally unique identifier for this settlement.
|
|
5986
6047
|
#
|
|
6048
|
+
# @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
|
|
6049
|
+
#
|
|
5987
6050
|
# @param transaction_id [String, nil] A globally unique transaction identifier provided by the card network, used acro
|
|
5988
6051
|
end
|
|
5989
6052
|
|
|
@@ -7827,6 +7890,13 @@ module Increase
|
|
|
7827
7890
|
|
|
7828
7891
|
# @see Increase::Models::CardPayment::Element::CardValidation#network_identifiers
|
|
7829
7892
|
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
|
7893
|
+
# @!attribute authorization_identification_response
|
|
7894
|
+
# The randomly generated 6-character Authorization Identification Response code
|
|
7895
|
+
# sent back to the acquirer in an approved response.
|
|
7896
|
+
#
|
|
7897
|
+
# @return [String, nil]
|
|
7898
|
+
required :authorization_identification_response, String, nil?: true
|
|
7899
|
+
|
|
7830
7900
|
# @!attribute retrieval_reference_number
|
|
7831
7901
|
# A life-cycle identifier used across e.g., an authorization and a reversal.
|
|
7832
7902
|
# Expected to be unique per acquirer within a window of time. For some card
|
|
@@ -7849,13 +7919,15 @@ module Increase
|
|
|
7849
7919
|
# @return [String, nil]
|
|
7850
7920
|
required :transaction_id, String, nil?: true
|
|
7851
7921
|
|
|
7852
|
-
# @!method initialize(retrieval_reference_number:, trace_number:, transaction_id:)
|
|
7922
|
+
# @!method initialize(authorization_identification_response:, retrieval_reference_number:, trace_number:, transaction_id:)
|
|
7853
7923
|
# Some parameter documentations has been truncated, see
|
|
7854
7924
|
# {Increase::Models::CardPayment::Element::CardValidation::NetworkIdentifiers} for
|
|
7855
7925
|
# more details.
|
|
7856
7926
|
#
|
|
7857
7927
|
# Network-specific identifiers for a specific request or transaction.
|
|
7858
7928
|
#
|
|
7929
|
+
# @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
|
|
7930
|
+
#
|
|
7859
7931
|
# @param retrieval_reference_number [String, nil] A life-cycle identifier used across e.g., an authorization and a reversal. Expec
|
|
7860
7932
|
#
|
|
7861
7933
|
# @param trace_number [String, nil] A counter used to verify an individual authorization. Expected to be unique per
|
|
@@ -1346,6 +1346,13 @@ module Increase
|
|
|
1346
1346
|
|
|
1347
1347
|
# @see Increase::Models::DeclinedTransaction::Source::CardDecline#network_identifiers
|
|
1348
1348
|
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
|
1349
|
+
# @!attribute authorization_identification_response
|
|
1350
|
+
# The randomly generated 6-character Authorization Identification Response code
|
|
1351
|
+
# sent back to the acquirer in an approved response.
|
|
1352
|
+
#
|
|
1353
|
+
# @return [String, nil]
|
|
1354
|
+
required :authorization_identification_response, String, nil?: true
|
|
1355
|
+
|
|
1349
1356
|
# @!attribute retrieval_reference_number
|
|
1350
1357
|
# A life-cycle identifier used across e.g., an authorization and a reversal.
|
|
1351
1358
|
# Expected to be unique per acquirer within a window of time. For some card
|
|
@@ -1368,13 +1375,15 @@ module Increase
|
|
|
1368
1375
|
# @return [String, nil]
|
|
1369
1376
|
required :transaction_id, String, nil?: true
|
|
1370
1377
|
|
|
1371
|
-
# @!method initialize(retrieval_reference_number:, trace_number:, transaction_id:)
|
|
1378
|
+
# @!method initialize(authorization_identification_response:, retrieval_reference_number:, trace_number:, transaction_id:)
|
|
1372
1379
|
# Some parameter documentations has been truncated, see
|
|
1373
1380
|
# {Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkIdentifiers}
|
|
1374
1381
|
# for more details.
|
|
1375
1382
|
#
|
|
1376
1383
|
# Network-specific identifiers for a specific request or transaction.
|
|
1377
1384
|
#
|
|
1385
|
+
# @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
|
|
1386
|
+
#
|
|
1378
1387
|
# @param retrieval_reference_number [String, nil] A life-cycle identifier used across e.g., an authorization and a reversal. Expec
|
|
1379
1388
|
#
|
|
1380
1389
|
# @param trace_number [String, nil] A counter used to verify an individual authorization. Expected to be unique per
|
|
@@ -1384,6 +1384,13 @@ module Increase
|
|
|
1384
1384
|
|
|
1385
1385
|
# @see Increase::Models::PendingTransaction::Source::CardAuthorization#network_identifiers
|
|
1386
1386
|
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
|
1387
|
+
# @!attribute authorization_identification_response
|
|
1388
|
+
# The randomly generated 6-character Authorization Identification Response code
|
|
1389
|
+
# sent back to the acquirer in an approved response.
|
|
1390
|
+
#
|
|
1391
|
+
# @return [String, nil]
|
|
1392
|
+
required :authorization_identification_response, String, nil?: true
|
|
1393
|
+
|
|
1387
1394
|
# @!attribute retrieval_reference_number
|
|
1388
1395
|
# A life-cycle identifier used across e.g., an authorization and a reversal.
|
|
1389
1396
|
# Expected to be unique per acquirer within a window of time. For some card
|
|
@@ -1406,13 +1413,15 @@ module Increase
|
|
|
1406
1413
|
# @return [String, nil]
|
|
1407
1414
|
required :transaction_id, String, nil?: true
|
|
1408
1415
|
|
|
1409
|
-
# @!method initialize(retrieval_reference_number:, trace_number:, transaction_id:)
|
|
1416
|
+
# @!method initialize(authorization_identification_response:, retrieval_reference_number:, trace_number:, transaction_id:)
|
|
1410
1417
|
# Some parameter documentations has been truncated, see
|
|
1411
1418
|
# {Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkIdentifiers}
|
|
1412
1419
|
# for more details.
|
|
1413
1420
|
#
|
|
1414
1421
|
# Network-specific identifiers for a specific request or transaction.
|
|
1415
1422
|
#
|
|
1423
|
+
# @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
|
|
1424
|
+
#
|
|
1416
1425
|
# @param retrieval_reference_number [String, nil] A life-cycle identifier used across e.g., an authorization and a reversal. Expec
|
|
1417
1426
|
#
|
|
1418
1427
|
# @param trace_number [String, nil] A counter used to verify an individual authorization. Expected to be unique per
|
|
@@ -1108,6 +1108,13 @@ module Increase
|
|
|
1108
1108
|
|
|
1109
1109
|
# @see Increase::Models::RealTimeDecision::CardAuthorization#network_identifiers
|
|
1110
1110
|
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
|
1111
|
+
# @!attribute authorization_identification_response
|
|
1112
|
+
# The randomly generated 6-character Authorization Identification Response code
|
|
1113
|
+
# sent back to the acquirer in an approved response.
|
|
1114
|
+
#
|
|
1115
|
+
# @return [String, nil]
|
|
1116
|
+
required :authorization_identification_response, String, nil?: true
|
|
1117
|
+
|
|
1111
1118
|
# @!attribute retrieval_reference_number
|
|
1112
1119
|
# A life-cycle identifier used across e.g., an authorization and a reversal.
|
|
1113
1120
|
# Expected to be unique per acquirer within a window of time. For some card
|
|
@@ -1130,13 +1137,15 @@ module Increase
|
|
|
1130
1137
|
# @return [String, nil]
|
|
1131
1138
|
required :transaction_id, String, nil?: true
|
|
1132
1139
|
|
|
1133
|
-
# @!method initialize(retrieval_reference_number:, trace_number:, transaction_id:)
|
|
1140
|
+
# @!method initialize(authorization_identification_response:, retrieval_reference_number:, trace_number:, transaction_id:)
|
|
1134
1141
|
# Some parameter documentations has been truncated, see
|
|
1135
1142
|
# {Increase::Models::RealTimeDecision::CardAuthorization::NetworkIdentifiers} for
|
|
1136
1143
|
# more details.
|
|
1137
1144
|
#
|
|
1138
1145
|
# Network-specific identifiers for a specific request or transaction.
|
|
1139
1146
|
#
|
|
1147
|
+
# @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
|
|
1148
|
+
#
|
|
1140
1149
|
# @param retrieval_reference_number [String, nil] A life-cycle identifier used across e.g., an authorization and a reversal. Expec
|
|
1141
1150
|
#
|
|
1142
1151
|
# @param trace_number [String, nil] A counter used to verify an individual authorization. Expected to be unique per
|
|
@@ -2171,6 +2171,13 @@ module Increase
|
|
|
2171
2171
|
|
|
2172
2172
|
# @see Increase::Models::Transaction::Source::CardFinancial#network_identifiers
|
|
2173
2173
|
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
|
2174
|
+
# @!attribute authorization_identification_response
|
|
2175
|
+
# The randomly generated 6-character Authorization Identification Response code
|
|
2176
|
+
# sent back to the acquirer in an approved response.
|
|
2177
|
+
#
|
|
2178
|
+
# @return [String, nil]
|
|
2179
|
+
required :authorization_identification_response, String, nil?: true
|
|
2180
|
+
|
|
2174
2181
|
# @!attribute retrieval_reference_number
|
|
2175
2182
|
# A life-cycle identifier used across e.g., an authorization and a reversal.
|
|
2176
2183
|
# Expected to be unique per acquirer within a window of time. For some card
|
|
@@ -2193,13 +2200,15 @@ module Increase
|
|
|
2193
2200
|
# @return [String, nil]
|
|
2194
2201
|
required :transaction_id, String, nil?: true
|
|
2195
2202
|
|
|
2196
|
-
# @!method initialize(retrieval_reference_number:, trace_number:, transaction_id:)
|
|
2203
|
+
# @!method initialize(authorization_identification_response:, retrieval_reference_number:, trace_number:, transaction_id:)
|
|
2197
2204
|
# Some parameter documentations has been truncated, see
|
|
2198
2205
|
# {Increase::Models::Transaction::Source::CardFinancial::NetworkIdentifiers} for
|
|
2199
2206
|
# more details.
|
|
2200
2207
|
#
|
|
2201
2208
|
# Network-specific identifiers for a specific request or transaction.
|
|
2202
2209
|
#
|
|
2210
|
+
# @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
|
|
2211
|
+
#
|
|
2203
2212
|
# @param retrieval_reference_number [String, nil] A life-cycle identifier used across e.g., an authorization and a reversal. Expec
|
|
2204
2213
|
#
|
|
2205
2214
|
# @param trace_number [String, nil] A counter used to verify an individual authorization. Expected to be unique per
|
|
@@ -2772,6 +2781,13 @@ module Increase
|
|
|
2772
2781
|
# @return [String]
|
|
2773
2782
|
required :acquirer_reference_number, String
|
|
2774
2783
|
|
|
2784
|
+
# @!attribute authorization_identification_response
|
|
2785
|
+
# The randomly generated 6-character Authorization Identification Response code
|
|
2786
|
+
# sent back to the acquirer in an approved response.
|
|
2787
|
+
#
|
|
2788
|
+
# @return [String, nil]
|
|
2789
|
+
required :authorization_identification_response, String, nil?: true
|
|
2790
|
+
|
|
2775
2791
|
# @!attribute transaction_id
|
|
2776
2792
|
# A globally unique transaction identifier provided by the card network, used
|
|
2777
2793
|
# across multiple life-cycle requests.
|
|
@@ -2779,7 +2795,7 @@ module Increase
|
|
|
2779
2795
|
# @return [String, nil]
|
|
2780
2796
|
required :transaction_id, String, nil?: true
|
|
2781
2797
|
|
|
2782
|
-
# @!method initialize(acquirer_business_id:, acquirer_reference_number:, transaction_id:)
|
|
2798
|
+
# @!method initialize(acquirer_business_id:, acquirer_reference_number:, authorization_identification_response:, transaction_id:)
|
|
2783
2799
|
# Some parameter documentations has been truncated, see
|
|
2784
2800
|
# {Increase::Models::Transaction::Source::CardRefund::NetworkIdentifiers} for more
|
|
2785
2801
|
# details.
|
|
@@ -2790,6 +2806,8 @@ module Increase
|
|
|
2790
2806
|
#
|
|
2791
2807
|
# @param acquirer_reference_number [String] A globally unique identifier for this settlement.
|
|
2792
2808
|
#
|
|
2809
|
+
# @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
|
|
2810
|
+
#
|
|
2793
2811
|
# @param transaction_id [String, nil] A globally unique transaction identifier provided by the card network, used acro
|
|
2794
2812
|
end
|
|
2795
2813
|
|
|
@@ -4258,6 +4276,13 @@ module Increase
|
|
|
4258
4276
|
# @return [String]
|
|
4259
4277
|
required :acquirer_reference_number, String
|
|
4260
4278
|
|
|
4279
|
+
# @!attribute authorization_identification_response
|
|
4280
|
+
# The randomly generated 6-character Authorization Identification Response code
|
|
4281
|
+
# sent back to the acquirer in an approved response.
|
|
4282
|
+
#
|
|
4283
|
+
# @return [String, nil]
|
|
4284
|
+
required :authorization_identification_response, String, nil?: true
|
|
4285
|
+
|
|
4261
4286
|
# @!attribute transaction_id
|
|
4262
4287
|
# A globally unique transaction identifier provided by the card network, used
|
|
4263
4288
|
# across multiple life-cycle requests.
|
|
@@ -4265,7 +4290,7 @@ module Increase
|
|
|
4265
4290
|
# @return [String, nil]
|
|
4266
4291
|
required :transaction_id, String, nil?: true
|
|
4267
4292
|
|
|
4268
|
-
# @!method initialize(acquirer_business_id:, acquirer_reference_number:, transaction_id:)
|
|
4293
|
+
# @!method initialize(acquirer_business_id:, acquirer_reference_number:, authorization_identification_response:, transaction_id:)
|
|
4269
4294
|
# Some parameter documentations has been truncated, see
|
|
4270
4295
|
# {Increase::Models::Transaction::Source::CardSettlement::NetworkIdentifiers} for
|
|
4271
4296
|
# more details.
|
|
@@ -4276,6 +4301,8 @@ module Increase
|
|
|
4276
4301
|
#
|
|
4277
4302
|
# @param acquirer_reference_number [String] A globally unique identifier for this settlement.
|
|
4278
4303
|
#
|
|
4304
|
+
# @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
|
|
4305
|
+
#
|
|
4279
4306
|
# @param transaction_id [String, nil] A globally unique transaction identifier provided by the card network, used acro
|
|
4280
4307
|
end
|
|
4281
4308
|
|
data/lib/increase/version.rb
CHANGED